Skip to content

Instantly share code, notes, and snippets.

@ShahinAhmed7
Last active July 10, 2017 18:50
Show Gist options
  • Save ShahinAhmed7/723d703350f1370baf5b9095bac841ff to your computer and use it in GitHub Desktop.
Save ShahinAhmed7/723d703350f1370baf5b9095bac841ff 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) {
}
/* Tablet Layout: 640px. */
@media only screen and (min-width: 640px) and (max-width: 960px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment