From d7ffd81a961d029aad9d65669960a8240ff80c51 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 12 Jul 2018 23:37:40 +0100 Subject: [PATCH] CSS: Set font weights correctly Signed-off-by: Michael Tremer --- src/scss/_variables.scss | 4 ++++ src/templates/base.html | 3 +++ 2 files changed, 7 insertions(+) diff --git a/src/scss/_variables.scss b/src/scss/_variables.scss index 26f7e369..6c5b598c 100644 --- a/src/scss/_variables.scss +++ b/src/scss/_variables.scss @@ -46,6 +46,10 @@ $border-radius-lg: 2px; // Fonts $font-family-sans-serif: "Ubuntu", sans-serif; +$font-weight-light: 300; +$font-weight-normal: 500; +$font-weight-bold: 700; + // Typo $font-size-base: 0.875rem; diff --git a/src/templates/base.html b/src/templates/base.html index 8ffefd19..0c4489a4 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -14,6 +14,9 @@ + + + {% if rss_url %} -- 2.47.3