diff options
author | Thomas Park <thomas@thomaspark.co> | 2015-12-27 21:21:47 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.co> | 2015-12-27 21:21:47 -0500 |
commit | b83435e908a851a5357fe60fee2fcd2a1d65cf59 (patch) | |
tree | 1fb56f55e9e25df1b9b7feb6b9de941c588e1f14 /superhero | |
parent | 11be9a489bad9791ab0d6b82c07a8c1f80673c0b (diff) |
superhero: build sass for #535
Diffstat (limited to 'superhero')
-rw-r--r-- | superhero/_bootswatch.scss | 12 | ||||
-rw-r--r-- | superhero/_variables.scss | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/superhero/_bootswatch.scss b/superhero/_bootswatch.scss index 0afae16e..439240cf 100644 --- a/superhero/_bootswatch.scss +++ b/superhero/_bootswatch.scss @@ -10,7 +10,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !defa .navbar { @include box-shadow(none); border: none; - font-size: 12px; + font-size: $font-size-small; &-default { @@ -41,7 +41,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !defa &-sm, &-xs { - font-size: 12px; + font-size: $font-size-small; } } @@ -83,7 +83,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !defa @include box-shadow(none); > li > a { - font-size: 12px; + font-size: $font-size-small; } } @@ -92,14 +92,14 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !defa } .dropdown-header { - font-size: 12px; + font-size: $font-size-small; } // Tables ===================================================================== table, .table { - font-size: 12px; + font-size: $font-size-small; a:not(.btn) { color: #fff; @@ -135,7 +135,7 @@ label, .radio label, .checkbox label, .help-block { - font-size: 12px; + font-size: $font-size-small; } .input-addon, diff --git a/superhero/_variables.scss b/superhero/_variables.scss index 4ba893d5..d644e7a9 100644 --- a/superhero/_variables.scss +++ b/superhero/_variables.scss @@ -51,7 +51,7 @@ $font-family-base: $font-family-sans-serif !default; $font-size-base: 15px !default; $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px -$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px +$font-size-small: 12px !default; $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px |