Created
October 18, 2014 13:48
-
-
Save cimmanon/fa94eb844ee63e2c3a7b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<label>foo</label> | |
<label class="blue">foo</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 500px) { | |
.mymixin .my-image { | |
width: 100px; | |
} | |
} | |
@media (min-width: 501px) { | |
.mymixin .my-image { | |
width: 200px; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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