Skip to content

Instantly share code, notes, and snippets.

@georgecrawford
Created January 10, 2014 14:29
Show Gist options
  • Save georgecrawford/8354345 to your computer and use it in GitHub Desktop.
Save georgecrawford/8354345 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
}
@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