Skip to content

Instantly share code, notes, and snippets.

@wesruv
Created July 14, 2014 21:07
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 wesruv/a73482c7f113a7623eb0 to your computer and use it in GitHub Desktop.
Save wesruv/a73482c7f113a7623eb0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.1)
// Compass (v1.0.0.alpha.20)
// ----
%teacher {
font-family: Arial, sans-serif;
}
.teacher {
@extend %teacher;
color: red;
&__grade1 {
@extend %teacher;
color: yellow;
}
}
.teacher, .teacher__grade1 {
font-family: Arial, sans-serif;
}
.teacher {
color: red;
}
.teacher__grade1 {
color: yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment