Skip to content

Instantly share code, notes, and snippets.

@iamphill
Created July 21, 2015 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamphill/f64baeaaaec7741bca68 to your computer and use it in GitHub Desktop.
Save iamphill/f64baeaaaec7741bca68 to your computer and use it in GitHub Desktop.
SASS nested namespace properties
#test {
font-family: Helvetica, Arial, sans-serif;
font-size: 2em;
margin-left: 20px;
margin-top: 20px;
padding-right: 50px;
padding-left: 50px; }
#test {
font: {
family: Helvetica, Arial, sans-serif;
size: 2em;
}
margin: {
left: 20px;
top: 20px;
}
padding: {
right: 50px;
left: 50px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment