Created
October 8, 2014 02:23
-
-
Save alxjrvs/6b63e50ea9e977a12465 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) | |
// ---- | |
// Using Ampersands to extend classes | |
.button { | |
background: white; | |
height: 40px; | |
&--dark { | |
background: black; | |
} | |
&--success { | |
background: green; | |
} | |
&--failure { | |
background: 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 { | |
background: white; | |
height: 40px; | |
} | |
.button--dark { | |
background: black; | |
} | |
.button--success { | |
background: green; | |
} | |
.button--failure { | |
background: 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