Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created January 26, 2015 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Takazudo/a7783c607e1551ac6567 to your computer and use it in GitHub Desktop.
Save Takazudo/a7783c607e1551ac6567 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
.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