Created
May 6, 2014 21:54
-
-
Save gavacho/8f0297f9cde5ef9bc70a 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.6) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.block { | |
background-color: black; | |
&--light { | |
background-color: white; | |
} | |
&__fg { | |
color: white; | |
} | |
&block__fg { | |
color: black; | |
} | |
} |
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
.block { | |
background-color: black; | |
} | |
.block--light { | |
background-color: white; | |
} | |
.block__fg { | |
color: white; | |
} | |
.blockblock__fg { | |
color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment