Skip to content

Commit

Permalink
Set new font sizes.
Browse files Browse the repository at this point in the history
Resolves #171.
  • Loading branch information
srph committed Nov 18, 2015
1 parent 7e6c0ac commit 5820ae1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
12 changes: 6 additions & 6 deletions docs/dist/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ $container-max-widths: (
// type base
$font-size-small: 12px !default;
$font-size-base: 14px !default;
$font-size-h1: 36px !default;
$font-size-h2: 30px !default;
$font-size-h3: 24px !default;
$font-size-h4: 20px !default;
$font-size-h5: 16px !default;
$font-size-h6: 14px !default;
$line-height-base: 1.7 !default;

// etc base
Expand Down
12 changes: 6 additions & 6 deletions styles/base/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ h1, h2, h3, h4, h5, h6 {
font-weight: 400;
}

h1 { font-size: 30px; }
h2 { font-size: 21px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
h5 { font-size: 12px; }
h6 { font-size: 11px; }
h1 { font-size: $font-size-h1; }
h2 { font-size: $font-size-h2; }
h3 { font-size: $font-size-h3; }
h4 { font-size: $font-size-h4; }
h5 { font-size: $font-size-h5; }
h6 { font-size: $font-size-h6; }

small { font-size: 90%; }

Expand Down

0 comments on commit 5820ae1

Please sign in to comment.