Created
January 26, 2015 10:13
-
-
Save Takazudo/a7783c607e1551ac6567 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.1) | |
// ---- | |
.Taro { | |
$_color: yellow; | |
%_Taro-human{ | |
color: $_color; | |
} | |
.moox{ | |
@extend %_Taro-human; | |
} | |
} | |
.Mary { | |
$_color: black; | |
%_Mary-human{ | |
color: $_color; | |
} | |
.moo{ | |
@extend %_Mary-human; | |
} | |
} |
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
.Taro .moox { | |
color: yellow; | |
} | |
.Mary .moo { | |
color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment