Skip to content

Instantly share code, notes, and snippets.

@dyrkow
Last active July 31, 2016 16:30
Show Gist options
  • Save dyrkow/edfa051c9dbe40cc6892abc19c52a49d to your computer and use it in GitHub Desktop.
Save dyrkow/edfa051c9dbe40cc6892abc19c52a49d to your computer and use it in GitHub Desktop.
/*========== Desktop First Method ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment