Created
September 1, 2016 23:18
-
-
Save rhettl/4697b4c5c0e504ef724842d8bce6b47f to your computer and use it in GitHub Desktop.
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
$font-base: 12px; | |
$red: #d80000; | |
$dkbrown: #2b1d0e; | |
$eggshell: #F0EAD6; | |
$tan: #D2B48C; | |
body { | |
font-size: $font-base; | |
background-color: $eggshell; | |
color: $dkbrown; | |
.content { | |
border: 1px solid $tan; | |
} | |
h1, h2, h3, h4, h5 { | |
color: mix($dkbrown, $red, 12%); // Brown with a little Red | |
} | |
h5 { | |
font-size: $font-base; | |
} | |
h4 { | |
font-size: $font-base * 1.2; | |
} | |
h3 { | |
font-size: $font-base * 1.4; | |
} | |
h2 { | |
font-size: $font-base * 1.6; | |
} | |
h1 { | |
font-size: $font-base * 2.0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment