Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created July 29, 2013 19:28
Show Gist options
  • Save jbutko/6107040 to your computer and use it in GitHub Desktop.
Save jbutko/6107040 to your computer and use it in GitHub Desktop.
/* 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