Created
November 19, 2014 02:15
-
-
Save jeffkamo/c06688abd91d0c255e1c 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
.c-button, | |
%c-button { | |
color: red; | |
} | |
.c-callout { | |
@extend %c-button; // At first glance, this might not look dangerous | |
color: blue; | |
} | |
.t-home .cta .c-button { // seems pretty innocent still, right? | |
color: green; | |
} | |
.t-pdp .cta .c-button { | |
@extend %c-button | |
} | |
.t-about .form [type="submit"] { | |
@extend %c-button | |
} | |
.t-checkout .form .payment .field .row button { | |
@extend %c-button | |
} |
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
.c-button, | |
.c-callout, | |
.t-pdp .cta .c-button, | |
.t-about .form [type="submit"], | |
.t-checkout .form .payment .field .row button { | |
color: red; | |
} | |
.c-callout { | |
color: blue; | |
} | |
.t-home .cta .c-button { | |
color: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment