Skip to content

Instantly share code, notes, and snippets.

@rcerrejon
Last active June 13, 2016 14:25
Show Gist options
  • Save rcerrejon/a9ab6d7d2d8e46f84ecf1c184eea78ec to your computer and use it in GitHub Desktop.
Save rcerrejon/a9ab6d7d2d8e46f84ecf1c184eea78ec to your computer and use it in GitHub Desktop.
Media Queries
/* Mobile */
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) {
}
/* Tablet Portrait */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
}
/* Tablet Landscape */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment