Created
August 12, 2014 08:59
-
-
Save acallaghan/75363d28b9d0160d9175 to your computer and use it in GitHub Desktop.
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
| /* From http://stephen.io/mediaqueries/ */ | |
| /* Non-retina iPad Landscape */ | |
| @media only screen | |
| and (min-device-width : 768px) | |
| and (max-device-width : 1024px) | |
| and (orientation : landscape) { | |
| } | |
| /* Non-retina iPad Portrait */ | |
| @media only screen | |
| and (min-device-width : 768px) | |
| and (max-device-width : 1024px) | |
| and (orientation : portrait) { | |
| } | |
| /* Retina iPad Landscape */ | |
| @media only screen | |
| and (min-device-width : 768px) | |
| and (max-device-width : 1024px) | |
| and (orientation : landscape) | |
| and (-webkit-min-device-pixel-ratio: 2) { | |
| } | |
| /* Retina iPad Portrait */ | |
| @media only screen | |
| and (min-device-width : 768px) | |
| and (max-device-width : 1024px) | |
| and (orientation : portrait) | |
| and (-webkit-min-device-pixel-ratio: 2) { | |
| } | |
| /* iPad mini Landscape */ | |
| @media only screen | |
| and (min-device-width : 768px) | |
| and (max-device-width : 1024px) | |
| and (orientation : landscape) | |
| and (-webkit-min-device-pixel-ratio: 1) { | |
| } | |
| /* iPad mini Portrait */ | |
| @media only screen | |
| and (min-device-width : 768px) | |
| and (max-device-width : 1024px) | |
| and (orientation : portrait) | |
| and (-webkit-min-device-pixel-ratio: 1) { | |
| } | |
| /* iPhone 5 series Landscape */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 568px) | |
| and (orientation : landscape) { | |
| } | |
| /* iPhone 5 series Portrait */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 568px) | |
| and (orientation : portrait) { | |
| } | |
| /* iPhone 2G - 4s Landscape */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) | |
| and (orientation : landscape) { | |
| } | |
| /* iPhone 2G - 4s Portrait */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) | |
| and (orientation : portrait) { | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment