Skip to content

Instantly share code, notes, and snippets.

@delowardev
Last active January 25, 2017 15:13
Show Gist options
  • Save delowardev/85a7b6047d8b2505890e597b3e02c14d to your computer and use it in GitHub Desktop.
Save delowardev/85a7b6047d8b2505890e597b3e02c14d to your computer and use it in GitHub Desktop.
/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
}
/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
}
/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}
/* Mobile & Tab Layout*/
@media only screen and (max-width: 991px){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment