Skip to content

Instantly share code, notes, and snippets.

@evantravers
Created March 6, 2014 03:36
Show Gist options
  • Save evantravers/9381806 to your computer and use it in GitHub Desktop.
Save evantravers/9381806 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.5)
// Compass (v1.0.0.alpha.18)
// ----
.class {
color: red;
}
%placeholder {
color: blue;
}
@mixin mixin() {
color: green;
}
.foo {
@extend .class;
}
.bar {
@extend %placeholder;
}
.derp {
@include mixin;
}
.class, .foo {
color: red;
}
.bar {
color: blue;
}
.derp {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment