From 1f60939d4a524d9064defbad221ef47a56c2bed4 Mon Sep 17 00:00:00 2001 From: meredevelopment Date: Mon, 20 Jan 2014 15:25:04 +0000 Subject: [PATCH] Set header font-weights to 'normal' (400) After 'Open Sans' was removed, I believe the font weights should be set back to normal/400 for headings instead of 300 which suited Open Sans. Some might argue it should be 'bold'/700 for headings as that's browsers' default. --- scss/foundation/components/_type.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scss/foundation/components/_type.scss b/scss/foundation/components/_type.scss index d3dd77dbe..e2c0dd8ee 100755 --- a/scss/foundation/components/_type.scss +++ b/scss/foundation/components/_type.scss @@ -4,7 +4,7 @@ $include-html-type-classes: $include-html-classes !default; // We use these to control header font styles $header-font-family: $body-font-family !default; -$header-font-weight: 300 !default; +$header-font-weight: normal !default; $header-font-style: normal !default; $header-font-color: #222 !default; $header-line-height: 1.4 !default; @@ -23,7 +23,7 @@ $h6-font-size: 1rem !default; // These control how subheaders are styled. $subheader-line-height: 1.4 !default; $subheader-font-color: scale-color($header-font-color, $lightness: 35%) !default; -$subheader-font-weight: 300 !default; +$subheader-font-weight: normal !default; $subheader-top-margin: .2rem !default; $subheader-bottom-margin: .5rem !default; @@ -443,4 +443,4 @@ $microformat-abbr-font-decoration: none !default; } } -} \ No newline at end of file +} -- 2.47.2