Created
July 29, 2013 19:28
-
-
Save jbutko/6107040 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
/* Media queries for iPhone 3+4 portrait & iPhone 5 portrait */ | |
@media only screen and (min-device-width:241px) and (max-device-width:320px) { | |
} | |
/* Media queries for Android (Samsung Galaxy) portrait */ | |
@media only screen and (min-device-width:321px) and (max-device-width:380px) { | |
} | |
/* Media queries for iPhone 3+4 landscape */ | |
@media only screen and (min-device-width:381px) and (max-device-width:480px) { | |
} | |
/* Media queries for iPhone 5 landscape */ | |
@media only screen and (min-device-width:481px) and (max-device-width:568px) { | |
} | |
/* Media queries for */ | |
@media only screen and (min-device-width:569px) and (max-device-width:600px) { | |
} | |
/* Media queries for */ | |
@media only screen and (min-device-width:601px) and (max-device-width:640px) { | |
} | |
/* Media queries for Android (Samsung Galaxy) landscape */ | |
@media only screen and (min-device-width:641px) and (max-device-width:685px) { | |
} | |
/* Media queries for iPad portrait */ | |
@media only screen and (min-device-width:686px) and (max-device-width:768px) { | |
} | |
/* Media queries for iPad landscape*/ | |
@media only screen and (min-device-width:769px) and (max-device-width:1024px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment