Skip to content

Instantly share code, notes, and snippets.

@jpfinlay
Created February 15, 2013 11:48
Show Gist options
  • Save jpfinlay/4959937 to your computer and use it in GitHub Desktop.
Save jpfinlay/4959937 to your computer and use it in GitHub Desktop.
Example SCSS file
$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