Skip to content

Instantly share code, notes, and snippets.

@shayhowe
Created March 6, 2015 16:42
Show Gist options
  • Save shayhowe/20dde4678483594416f9 to your computer and use it in GitHub Desktop.
Save shayhowe/20dde4678483594416f9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
/* Mixins */
@mixin ir {
color: transparent;
font: 0/0 a;
text-shadow: none;
}
.mixin-it {
@include ir;
background: pink;
}
.mixin-again {
@include ir;
width: 200px;
}
/* Silent Extends */
%ir {
color: transparent;
font: 0/0 a;
text-shadow: none;
}
.extend-it {
@extend %ir;
background: pink;
}
.extend-again {
@extend %ir;
width: 200px;
}
/* Mixins */
.mixin-it {
color: transparent;
font: 0/0 a;
text-shadow: none;
background: pink;
}
.mixin-again {
color: transparent;
font: 0/0 a;
text-shadow: none;
width: 200px;
}
/* Silent Extends */
.extend-it, .extend-again {
color: transparent;
font: 0/0 a;
text-shadow: none;
}
.extend-it {
background: pink;
}
.extend-again {
width: 200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment