Skip to content

Instantly share code, notes, and snippets.

@pajaydev
Created November 3, 2019 22:29
Show Gist options
  • Save pajaydev/9712686234a0fe778059ef2413ecdf62 to your computer and use it in GitHub Desktop.
Save pajaydev/9712686234a0fe778059ef2413ecdf62 to your computer and use it in GitHub Desktop.
/* Big tablet to 1200px */
@media only screen and (max-width: 1200px) {
}
/* Small tablet to big tablet: from 768px to 1023px */
@media only screen and (max-width: 1023px) {
}
/* Small phones to small tablets: from 481px to 767px */
@media only screen and (max-width: 767px) {
}
/* Small phones: from 0 to 480px */
@media only screen and (max-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment