diff --git a/dist/ratchet.css b/dist/ratchet.css index 429a301..97b71be 100644 --- a/dist/ratchet.css +++ b/dist/ratchet.css @@ -229,7 +229,9 @@ body { right: 0; bottom: 0; left: 0; - font: 14px/1.25 "Helvetica Neue", sans-serif; + font-family: "Helvetica Neue", Helvetica, sans-serif; + font-size: 14px; + line-height: 1.25; color: #000; background-color: #fff; } @@ -420,7 +422,7 @@ a { padding-bottom: 6px; padding-left: 15px; margin-left: 0; - font-weight: bold; + font-weight: 500; line-height: 18px; background-color: #f8f8f8; border-top: 1px solid rgba(0, 0, 0, 0.1); @@ -551,7 +553,8 @@ select { float: left; width: 35%; padding: 11px 10px 9px 13px; - font-weight: 600; + font-weight: 500; + font-family: "Helvetica Neue", Helvetica, sans-serif; } .input-row label + input { diff --git a/lib/sass/bars.scss b/lib/sass/bars.scss index 38d20db..5980e51 100644 --- a/lib/sass/bars.scss +++ b/lib/sass/bars.scss @@ -52,7 +52,7 @@ padding: 0; margin: 0; font-size: 18px; - font-weight: 500; + font-weight: $font-weight; line-height: $bar-base-height; color: #000; text-align: center; diff --git a/lib/sass/base.scss b/lib/sass/base.scss index 0264f26..35d55a9 100644 --- a/lib/sass/base.scss +++ b/lib/sass/base.scss @@ -11,7 +11,9 @@ body { right: 0; bottom: 0; left: 0; - font: 14px/1.25 "Helvetica Neue", sans-serif; + font-family: $font-family; + font-size: 14px; + line-height: 1.25; color: #000; background-color: #fff; } diff --git a/lib/sass/forms.scss b/lib/sass/forms.scss index b487a6e..f0b41cc 100644 --- a/lib/sass/forms.scss +++ b/lib/sass/forms.scss @@ -115,7 +115,8 @@ select { float: left; width: 35%; padding: 11px 10px 9px 13px; // Optimizing the baseline for mobile. - font-weight: $font-weight-bold; + font-weight: $font-weight; + font-family: $font-family; } // Actual inputs float to right of labels and also have a set percentage diff --git a/lib/sass/table-views.scss b/lib/sass/table-views.scss index 40ed383..798442f 100644 --- a/lib/sass/table-views.scss +++ b/lib/sass/table-views.scss @@ -65,7 +65,7 @@ padding-bottom: 6px; padding-left: 15px; margin-left: 0; - font-weight: bold; + font-weight: $font-weight; line-height: 18px; background-color: #f8f8f8; border-top: 1px solid rgba(0, 0, 0, .1); diff --git a/lib/sass/variables.scss b/lib/sass/variables.scss index ceed4cd..ec11731 100644 --- a/lib/sass/variables.scss +++ b/lib/sass/variables.scss @@ -5,8 +5,9 @@ // Type // -------------------------------------------------- +$font-family: "Helvetica Neue", Helvetica, sans-serif; $font-weight: 500; -$font-weight-bold: 600; +$font-weight-bold: 700; $font-weight-light: 400;