Created
January 15, 2014 14:38
-
-
Save TimHacker/8437411 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// Sass (v3.3.0.rc.2) | |
// Compass (v1.0.0.alpha.17) | |
// ---- | |
body { | |
color: red; | |
div.container { | |
color: orange; | |
div.content { | |
color: yellow; | |
div.articles { | |
color: green; | |
& > div.post { | |
color: blue; | |
div.title { | |
color: violet; | |
h1 { | |
color: purple; | |
a { | |
color: red; | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains 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
body { | |
color: red; | |
} | |
body div.container { | |
color: orange; | |
} | |
body div.container div.content { | |
color: yellow; | |
} | |
body div.container div.content div.articles { | |
color: green; | |
} | |
body div.container div.content div.articles > div.post { | |
color: blue; | |
} | |
body div.container div.content div.articles > div.post div.title { | |
color: violet; | |
} | |
body div.container div.content div.articles > div.post div.title h1 { | |
color: purple; | |
} | |
body div.container div.content div.articles > div.post div.title h1 a { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment