Created
August 1, 2014 15:26
-
-
Save hernaneg350/987a2cd0f639f1e2677a 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
// ---- | |
// Sass (v3.3.12) | |
// Compass (v1.0.0.alpha.21) | |
// ---- | |
%foo-15-snow { | |
color: white; | |
} | |
.icon-foo { | |
&.icon-15 { | |
&.icon-snow { | |
@extend %foo-15-snow; | |
} | |
} | |
} | |
.mom { | |
.likes { | |
.pizza { | |
@extend %foo-15-snow; | |
} | |
} | |
} | |
.dad { | |
.likes { | |
.pizza { | |
.too { | |
@extend %foo-15-snow; | |
} | |
} | |
} | |
} |
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
.icon-foo.icon-15.icon-snow, .mom .likes .pizza, .dad .likes .pizza .too { | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment