Created
October 27, 2014 22:49
-
-
Save cimmanon/4a1bf577ac941209d925 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) | |
// ---- | |
$screen-xs: 480px !default; | |
$screen-xs-min: $screen-xs !default; | |
//there are more of these for each screen size: sm, md, lg | |
@media (min-width: $screen-xs-min) { | |
.thumbnail img { | |
height:64px !important; | |
} | |
} |
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 (min-width: 480px) { | |
.thumbnail img { | |
height: 64px !important; | |
} | |
} |
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