Skip to content

Instantly share code, notes, and snippets.

@davidpett
Created August 15, 2014 17:38
Show Gist options
  • Select an option

  • Save davidpett/839ab5d69641915f6360 to your computer and use it in GitHub Desktop.

Select an option

Save davidpett/839ab5d69641915f6360 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.3)
// Compass (v1.0.0.rc.1)
// ----
%btn {
background: #ff0000;
}
.btn {
@extend %btn;
&--small {
@extend %btn;
font-size: 1em;
}
&--large {
@extend %btn;
font-size: 1.5em;
}
}
.btn, .btn--small, .btn--large {
background: #ff0000;
}
.btn--small {
font-size: 1em;
}
.btn--large {
font-size: 1.5em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment