Skip to content

Instantly share code, notes, and snippets.

@NdYAG
Created February 20, 2014 09:44
Show Gist options
  • Select an option

  • Save NdYAG/9110169 to your computer and use it in GitHub Desktop.

Select an option

Save NdYAG/9110169 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.4)
// Compass (v1.0.0.alpha.18)
// ----
%h1 {
font-size: 2em;
}
%h2 {
font-size: 1.8em;
}
@mixin typography() {
@each $header in h1, h2 {
#{$header} {
@extend %#{$header};
}
}
}
.content {
@include typography;
}
.content h1 {
font-size: 2em;
}
.content h2 {
font-size: 1.8em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment