Skip to content

Instantly share code, notes, and snippets.

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