Created
October 8, 2014 02:46
-
-
Save alxjrvs/4ac405f6a62ebf80db8a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
.button | |
Click | |
.button--error | |
Error | |
.button--success | |
Success | |
.button--pending | |
Pending |
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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
//Maps are basically hashes. | |
$colors: ( | |
red: red, | |
green: green, | |
blue: blue | |
); | |
.button { | |
backround-color: map-get($colors, red); | |
} | |
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
.button { | |
backround-color: red; | |
} |
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
.button | |
Click | |
.button--error | |
Error | |
.button--success | |
Success | |
.button--pending | |
Pending |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment