Skip to content

Instantly share code, notes, and snippets.

@tomconroy
Created September 23, 2014 16:40
Show Gist options
  • Save tomconroy/b0ee2c5c0c58821e3e3b to your computer and use it in GitHub Desktop.
Save tomconroy/b0ee2c5c0c58821e3e3b to your computer and use it in GitHub Desktop.
Generate CSS Header sizes
$max: 32;
$min: 12;
@for $i from 1 through 6 {
h#{$i} {
font-size: #{$max - ($max - $min) * (($i - 1) / 5)}px;
}
}
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