Created
August 8, 2013 11:44
-
-
Save stevemeisner/6183922 to your computer and use it in GitHub Desktop.
Reusable SASS @Mixins.
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
| // Reusable media query | |
| @mixin maxWidth-x($maxWidth, $orientation:"") { | |
| @if $orientation != "" { | |
| @media only screen and (max-width : $maxWidth) and (orientation:$orientation) { | |
| @content; | |
| } | |
| } | |
| @if $orientation == "" { | |
| @media only screen and (max-width : $maxWidth) { | |
| @content; | |
| } | |
| } | |
| } | |
| @mixin maxDeviceWidth-x($maxWidth, $orientation:"") { | |
| @if $orientation != "" { | |
| @media only screen and (max-device-width : $maxWidth) and (orientation:$orientation) { | |
| @content; | |
| } | |
| } | |
| @if $orientation == "" { | |
| @media only screen and (max-device-width : $maxWidth) { | |
| @content; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment