Created
May 7, 2014 08:27
-
-
Save doot0/aab7b78a729ef0876e73 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
<body> | |
<p class="primary">Hi Bun. :></p> | |
<p class="complement">Complementary butt.</p> | |
</body> |
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) | |
// ---- | |
$primary : #bada55; | |
$complement : complement($primary); | |
body{ | |
content: '#{$complement}'; | |
} | |
.primary{ | |
color:$primary; | |
} | |
.complement{ | |
color:$complement; | |
} |
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 { | |
content: "#7555da"; | |
} | |
.primary { | |
color: #bada55; | |
} | |
.complement { | |
color: #7555da; | |
} |
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> | |
<p class="primary">Hi Bun. :></p> | |
<p class="complement">Complementary butt.</p> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment