Created
February 14, 2013 15:15
-
-
Save codingdesigner/4953464 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
This file contains hidden or 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.2.5 | |
// Breakpoint v1.3 | |
@import "breakpoint"; | |
// Sass v3.2.5 | |
// Breakpoint v1.3 | |
// @import "breakpoint"; | |
$bp1: 30em; | |
$bp2: min-height 28em; | |
.nest { | |
@include breakpoint($bp1) { | |
color: red; | |
@include breakpoint($bp2) { | |
background-color: yellow; | |
} | |
} | |
} |
This file contains hidden or 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: 30em) { | |
.nest { | |
color: red; | |
} | |
} | |
@media (min-width: 30em) and (min-height: 28em) { | |
.nest { | |
background-color: yellow; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment