From: meredevelopment Date: Mon, 20 Jan 2014 15:25:04 +0000 (+0000) Subject: Set header font-weights to 'normal' (400) X-Git-Tag: v5.2.0~85^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F4192%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git 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. --- 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 +}