Created
December 28, 2014 13:38
-
-
Save minipai/06057028e96b0b3b60ac to your computer and use it in GitHub Desktop.
media query
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
$iphone-query = "only screen and (max-width: 480px)" | |
$ipad-query = "only screen and (min-width: 481px) and (max-width: 768px)" | |
$screen-query = "only screen and (min-width: 768px) and (max-width: 1300px)" | |
$wide-screen-query = "only screen and (min-width: 1301px)" | |
$tablet-query = "only screen and (max-width: 1024px)" | |
$mobile-query = "only screen and (max-width: 767px)" | |
$desktop-query = "only screen and (min-width: 768px)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment