Created
February 15, 2013 11:48
-
-
Save jpfinlay/4959937 to your computer and use it in GitHub Desktop.
Example SCSS file
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
$light_gray: #CCC; | |
body { | |
background-color: $light_gray; | |
font: { | |
family: Helvetica, Arial, sans-serif; | |
size: 14px; | |
} | |
} | |
a { | |
color: #0000DD; | |
img: { | |
border: none; | |
} | |
} | |
.clear { | |
clear: both; | |
height: 0; | |
overflow: hidden; | |
} | |
#container { | |
width: 75%; | |
margin: 0 auto; | |
background: #fff; | |
padding: 20px 40px; | |
border: solid 1px black; | |
margin-top: 20px; | |
} | |
#content { | |
clear: both; | |
padding-top: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment