diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-19 20:59:57 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-19 20:59:57 -0600 |
commit | 56539b18afb9d6990ba6d4a0002aa37605feb34b (patch) | |
tree | 033f202d761b8d825467e52fea69f57a08673830 | |
parent | e7af8a1e0f71d38b7e83a22a822fb9d971a41ec2 (diff) |
fixed some lingering design bugs with new fonts
-rw-r--r-- | design/sass/_details.scss | 2 | ||||
-rw-r--r-- | design/sass/_global.scss | 1 | ||||
-rw-r--r-- | design/sass/_mixins.scss | 2 | ||||
-rw-r--r-- | design/templates/archives/homepage-light.html | 4 |
4 files changed, 5 insertions, 4 deletions
diff --git a/design/sass/_details.scss b/design/sass/_details.scss index cf453ea..9958971 100644 --- a/design/sass/_details.scss +++ b/design/sass/_details.scss @@ -4,7 +4,7 @@ border-bottom: 3px double #efefef; } article { - font-family: mffweb, Georgia, 'Times New Roman', serif; + font-family: $fancy_serif; @include constrain_narrow; margin-top: 4rem; h1 { diff --git a/design/sass/_global.scss b/design/sass/_global.scss index 94a49da..7915751 100644 --- a/design/sass/_global.scss +++ b/design/sass/_global.scss @@ -34,6 +34,7 @@ a { } p { text-align: left; + font-family: $fancy_serif; @include fontsize(18); @include breakpoint(alpha){ @include fontsize(20); diff --git a/design/sass/_mixins.scss b/design/sass/_mixins.scss index b7fc66d..dd6f257 100644 --- a/design/sass/_mixins.scss +++ b/design/sass/_mixins.scss @@ -4,7 +4,7 @@ $light: #ccc; $orange: #b53a04; $link_color: #b53a04; -$headline_font_serif: Georgia, 'Times New Roman', serif; +$headline_font_serif: mffweb, Georgia, 'Times New Roman', serif; $fancy_serif: mffweb, Georgia, 'Times New Roman', serif; $body_p_font: normal 100% / 1.5 Georgia, Cambria, "Times New Roman", Times, serif; diff --git a/design/templates/archives/homepage-light.html b/design/templates/archives/homepage-light.html index 00243aa..7899ab2 100644 --- a/design/templates/archives/homepage-light.html +++ b/design/templates/archives/homepage-light.html @@ -64,7 +64,7 @@ <time class="dt-published published dt-updated post-date" datetime="{{object.pub_date|date:'c'}}">{{object.pub_date|date:"F"}} <span>{{object.pub_date|date:"j, Y"}}</span></time> <p class="post-summary"> <span class="p-location h-adr adr post-location" itemprop="contentLocation" itemscope itemtype="http://schema.org/Place"> - {% if object.location.country_name == "United States" %}<span class="p-locality locality">{{object.location.name|smartypants|safe}}</span>, <a class="p-region region" href="/jrnl/united-states/" title="travel writing from the United States">{{object.location.state_name}}</a>, <span class="p-country-name">U.S.</span>{%else%}<span class="p-region">{{object.location_name|smartypants|safe}}</span>, <a class="p-country-name country-name" href="/jrnl/{{object.location.country_slug}}/" title="travel writing from {{object.location.country_name}}">{{object.location.country_name}}</a>{%endif%} + {% if object.location.country_name == "United States" %}<span class="p-locality locality">{{object.location.name|smartypants|safe}}</span>, <a class="p-region region" href="/jrnl/united-states/" title="travel writing from the United States">{{object.location.state_name}}</a>, <span class="p-country-name">U.S.</span>{%else%}<span class="p-region">{{object.location.name|smartypants|safe}}</span>, <a class="p-country-name country-name" href="/jrnl/{{object.location.country_slug}}/" title="travel writing from {{object.location.country_name}}">{{object.location.country_name}}</a>{%endif%} </span> </p> </article> {% endfor %} @@ -85,7 +85,7 @@ <time class="dt-published published dt-updated post-date" datetime="{{object.pub_date|date:'c'}}">{{object.pub_date|date:"F"}} <span>{{object.pub_date|date:"j, Y"}}</span></time> <p class="post-summary"> <span class="p-location h-adr adr post-location" itemprop="contentLocation" itemscope itemtype="http://schema.org/Place"> - {% if object.location.country_name == "United States" %}<span class="p-locality locality">{{object.location_name|smartypants|safe}}</span>, <a class="p-region region" href="/jrnl/united-states/" title="travel writing from the United States">{{object.state_name}}</a>, <span class="p-country-name">U.S.</span>{%else%}<span class="p-region">{{object.location_name|smartypants|safe}}</span>, <a class="p-country-name country-name" href="/jrnl/{{object.country.slug}}/" title="travel writing from {{object.location.country_name}}">{{object.location.country_name}}</a>{%endif%} + {% if object.location.country_name == "United States" %}<span class="p-locality locality">{{object.location.name|smartypants|safe}}</span>, <a class="p-region region" href="/jrnl/united-states/" title="travel writing from the United States">{{object.location.state_name}}</a>, <span class="p-country-name">U.S.</span>{%else%}<span class="p-region">{{object.location.name|smartypants|safe}}</span>, <a class="p-country-name country-name" href="/jrnl/{{object.location.country.slug}}/" title="travel writing from {{object.location.country_name}}">{{object.location.country_name}}</a>{%endif%} </span> </p> </article> {% endfor %} |