Created
January 10, 2014 14:29
-
-
Save georgecrawford/8354345 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.0.rc.2) | |
// Compass (v1.0.0.alpha.17) | |
// ---- | |
@mixin smallscreen() { | |
@media all and (orientation: landscape) and (max-width: 599px) { | |
@content; | |
} | |
} | |
@mixin portrait() { | |
@media all and (orientation: portrait) { | |
@content; | |
} | |
} | |
.george3 { | |
@include smallscreen { | |
@include portrait { | |
width: 1; | |
} | |
} | |
} |
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 all and (orientation: landscape) and (max-width: 599px) and (orientation: portrait) { | |
.george3 { | |
width: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment