Created
August 4, 2014 09:44
-
-
Save crazyrohila/8d4a88d033bbe9391bff 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.3.14) | |
// Compass (v1.0.0.rc.0) | |
// ---- | |
%header { | |
h2 { | |
color: yellow; | |
} | |
h3 { | |
color: red; | |
} | |
} | |
header { | |
h3 { | |
color: green; | |
} | |
} | |
.test1 { | |
@extend %header; | |
} | |
.test2 { | |
@extend h3; | |
} |
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
.test1 h2 { | |
color: yellow; | |
} | |
.test1 h3, .test1 .test2 { | |
color: red; | |
} | |
header h3, header .test2 { | |
color: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment