From b7dbe249d520793e27387775200c8a53bf96e564 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Thu, 23 Feb 2017 15:41:28 -0800 Subject: [PATCH] Make font-weight-variables generic The imported font weights for both Klavika and Open Sans are the same, so the weights can be used to style both fonts --- website/source/assets/stylesheets/_variables.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/source/assets/stylesheets/_variables.scss b/website/source/assets/stylesheets/_variables.scss index 954ba0094..10ad342d3 100644 --- a/website/source/assets/stylesheets/_variables.scss +++ b/website/source/assets/stylesheets/_variables.scss @@ -41,7 +41,7 @@ $primary-button-color: #48b4fb; $font-family-open-sans: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-klavika: "klavika-web", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-mono: "Courier New", Monaco, Menlo, Consolas, monospace; -$font-weight-open-sans-l: 300; -$font-weight-open-sans-reg: 400; -$font-weight-open-sans-b: 600; -$font-weight-open-sans: $font-weight-open-sans-reg; +$font-weight-l: 300; +$font-weight-reg: 400; +$font-weight-b: 600; +$font-weight-xb: 700;