Skip to content

Commit

Permalink
Restore Lato as main body font
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleason committed Feb 15, 2020
1 parent 7dd21c2 commit 73f6681
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions project_tier/specs/templates/specs_layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
{% load projecttier_tags %}

{% block body_class %}specs-section{% endblock %}
{% block extra_css %}
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Titillium+Web:400,300,400italic,700,700italic,900,900italic,300italic">
{% endblock %}
{% block page_banner %}{% endblock %}

{% block sidebar %}
Expand Down
2 changes: 1 addition & 1 deletion project_tier/static/css/_foundation_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ $black: #0a0a0a;
$white: #fefefe;
$body-background: #A32428;
$body-font-color: $black;
$body-font-family: "Titillium Web", "Lato", Arial, sans-serif;
$body-font-family: "Lato", Arial, sans-serif;
$body-antialiased: true;
$global-margin: 1rem;
$global-padding: 1rem;
Expand Down
1 change: 1 addition & 0 deletions project_tier/static/css/_specs.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
body.specs-section {
background: #fefefe;
font-family: "Titillium Web", "Lato", Arial, sans-serif;
}

body.specs-section .main-wrap {
Expand Down
2 changes: 1 addition & 1 deletion project_tier/static/css/_tier_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
TYPOGRAPHY
========================================================================== */

$body-font-family: "Titillium Web", "Lato", Arial, sans-serif;
$body-font-family: "Lato", Arial, sans-serif;
$header-font-family: 'Playfair Display', serif;
$header-font-weight: bold;

Expand Down
2 changes: 1 addition & 1 deletion project_tier/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<meta name="msapplication-config" content="{% static 'icons/browserconfig.xml' %}">
<meta name="theme-color" content="#a32428">
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Titillium+Web:400,300,400italic,700,700italic,900,900italic,300italic|Roboto+Mono:400,700italic,400italic,700|Playfair+Display:400,700">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lato:400,300,400italic,700,700italic,900,900italic,300italic|Roboto+Mono:400,700italic,400italic,700|Playfair+Display:400,700">
{% compress css %}
{% fontawesome_css %}
<link rel="stylesheet" type="text/x-scss" href="{% static 'css/main.scss' %}">
Expand Down

0 comments on commit 73f6681

Please sign in to comment.