Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created October 18, 2014 13:48
Show Gist options
  • Save cimmanon/fa94eb844ee63e2c3a7b to your computer and use it in GitHub Desktop.
Save cimmanon/fa94eb844ee63e2c3a7b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<label>foo</label>
<label class="blue">foo</label>
// ----
// Sass (v3.4.6)
// Compass (v1.0.1)
// ----
@mixin mymixin
{
$small-size: 100px;
$med-size: 200px;
@media (max-width:500px)
{
.my-image
{
width: $small-size;
}
}
@media (min-width:501px)
{
.my-image
{
width: $med-size;
}
}
}
.mymixin {
@include mymixin;
}
@media (max-width: 500px) {
.mymixin .my-image {
width: 100px;
}
}
@media (min-width: 501px) {
.mymixin .my-image {
width: 200px;
}
}
<label>foo</label>
<label class="blue">foo</label>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment