Skip to content

Instantly share code, notes, and snippets.

@Dragory
Created November 17, 2012 15:01
Show Gist options
  • Save Dragory/4096611 to your computer and use it in GitHub Desktop.
Save Dragory/4096611 to your computer and use it in GitHub Desktop.
/* 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