Skip to content

Instantly share code, notes, and snippets.

@jaamaalxyz
Forked from mdsalim/Responsive Query
Created November 17, 2018 06:01
Show Gist options
  • Save jaamaalxyz/fe3e1617a0b7db8aa37f407ed2916c24 to your computer and use it in GitHub Desktop.
Save jaamaalxyz/fe3e1617a0b7db8aa37f407ed2916c24 to your computer and use it in GitHub Desktop.
/* XL Device :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {
}
/* LG Device :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
}
/* MD Device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
}
/* Extra small Device. */
@media (max-width: 767px) {
}
/* SM Small Device :550px. */
@media only screen and (min-width: 576px) and (max-width: 767px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment