Skip to content

Instantly share code, notes, and snippets.

@nadavspi
Created August 25, 2015 21:53
Show Gist options
  • Save nadavspi/f4d310d6c7732ea9c634 to your computer and use it in GitHub Desktop.
Save nadavspi/f4d310d6c7732ea9c634 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin redStuff {
color: red;
background-color: darkred;
}
body {
@include redStuff;
}
.link--red {
@include redStuff;
}
.redStuff {
color: red;
background-color: darkred;
}
.button--red {
@extend .redStuff;
}
@mixin bp() {
}
body {
color: red;
background-color: darkred;
}
.link--red {
color: red;
background-color: darkred;
}
.redStuff, .button--red {
color: red;
background-color: darkred;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment