Created
July 21, 2015 06:59
-
-
Save iamphill/f64baeaaaec7741bca68 to your computer and use it in GitHub Desktop.
SASS nested namespace properties
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
#test { | |
font-family: Helvetica, Arial, sans-serif; | |
font-size: 2em; | |
margin-left: 20px; | |
margin-top: 20px; | |
padding-right: 50px; | |
padding-left: 50px; } |
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
#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