Created
April 2, 2013 16:59
-
-
Save bryanstedman/5293969 to your computer and use it in GitHub Desktop.
_media_queries2.scss
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
// Define some screen sizes for media queries | |
$phone: 320px; | |
$phone-wide: 500px; | |
$tablet: 600px; | |
$large-screen: 992px; | |
@mixin at-least($device-width) { | |
@media screen and (min-width: $device-width) { | |
@content | |
} | |
} | |
@mixin until($device-width) { | |
@media screen and (max-width: $device-width - 1) { | |
@content | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment