Created
May 1, 2014 08:25
-
-
Save maddesigns/11447026 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
// ---- | |
// Sass (v3.3.6) | |
// Compass (v1.0.0.alpha.18) | |
// Breakpoint (v) | |
// ---- | |
@import "breakpoint"; | |
$small: 24em; | |
$middle: 34em; | |
$pair: 34em 65em; | |
$large: 65em, 'no-query' true; | |
.text { | |
@include breakpoint($pair) { | |
color: red; | |
} | |
} |
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: 34em) and (max-width: 65em) { | |
.text { | |
color: red; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment