Skip to content

Instantly share code, notes, and snippets.

@StfBauer
Created April 17, 2015 13:05
Show Gist options
  • Save StfBauer/ca58568a43954339f404 to your computer and use it in GitHub Desktop.
Save StfBauer/ca58568a43954339f404 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="box">
Hello world
</div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
%box {
width: 10em;
height: 5em;
}
.box-blue {
@extend %box;
background-color: blue;
}
.box-green {
@extend %box;
background-color: green;
}
.box-yellow{
@extend %box;
background-color: yellow;
}
.box-blue, .box-green, .box-yellow {
width: 10em;
height: 5em;
}
.box-blue {
background-color: blue;
}
.box-green {
background-color: green;
}
.box-yellow {
background-color: yellow;
}
<div class="box">
Hello world
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment