Created
September 23, 2014 16:40
-
-
Save tomconroy/b0ee2c5c0c58821e3e3b to your computer and use it in GitHub Desktop.
Generate CSS Header sizes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$max: 32; | |
$min: 12; | |
@for $i from 1 through 6 { | |
h#{$i} { | |
font-size: #{$max - ($max - $min) * (($i - 1) / 5)}px; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 { | |
font-size: 32px; | |
} | |
h2 { | |
font-size: 28px; | |
} | |
h3 { | |
font-size: 24px; | |
} | |
h4 { | |
font-size: 20px; | |
} | |
h5 { | |
font-size: 16px; | |
} | |
h6 { | |
font-size: 12px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment