Skip to content

Instantly share code, notes, and snippets.

@jahfer
Created November 28, 2013 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jahfer/7694836 to your computer and use it in GitHub Desktop.
Save jahfer/7694836 to your computer and use it in GitHub Desktop.
/* default mobile styling goes here.. */
/* then we progressively apply stylings for other widths */
/* Desktop */
@media (min-width: 767px) {
}
/* Tablets in Portrait */
@media (min-width: 767px) and (max-width: 978px) {
}
/* Mobile in Landscape */
@media (min-width: 480px) and (max-width: 767px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment