Get rid of inline styles

pull/1/head
mat ess 2022-08-13 01:03:55 -04:00
parent 343e20177f
commit 97ef0bab82
2 changed files with 8 additions and 1 deletions

View File

@ -54,6 +54,8 @@ html {
} }
} }
// Logo
div.brand>* { div.brand>* {
padding: 0 0.25em; padding: 0 0.25em;
} }
@ -156,4 +158,9 @@ ul.tags {
.meta.tags { .meta.tags {
float: right; float: right;
}
// Header dot
.header-dot {
font-size: 1.6em;
} }

View File

@ -56,7 +56,7 @@
{% macro page_header(title) %} {% macro page_header(title) %}
<div class="page-header"> <div class="page-header">
{{ title }}<span class="primary-color" style="font-size: 1.6em">.</span> {{ title }}<span class="primary-color header-dot">.</span>
</div> </div>
{% endmacro content %} {% endmacro content %}