Created
November 17, 2012 15:01
-
-
Save Dragory/4096611 to your computer and use it in GitHub Desktop.
This file contains 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
/* SASS */ | |
$color-bg: #fff; | |
$color-text: #444; | |
$font-size: 1.4em; | |
body { | |
font: normal 62.5%/1.4 'Arial', sans-serif; | |
background-color: $color-bg; | |
color: $color-text; | |
} | |
#wrap { | |
font-size: $font-size; | |
h1 { | |
font-size: 1.8em; | |
} | |
p { | |
padding: 16px 0; | |
margin: 0; | |
} | |
} | |
/* CSS */ | |
body { | |
font: normal 62.5%/1.4 "Arial", sans-serif; | |
background-color: white; | |
color: #444444; } | |
#wrap { | |
font-size: 1.4em; } | |
#wrap h1 { | |
font-size: 1.8em; } | |
#wrap p { | |
padding: 16px 0; | |
margin: 0; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment