Skip to content

Instantly share code, notes, and snippets.

@loughlincodes
Last active November 3, 2019 15:19
Show Gist options
  • Save loughlincodes/e7cffe61de18e0db4ed3cd3696e17a21 to your computer and use it in GitHub Desktop.
Save loughlincodes/e7cffe61de18e0db4ed3cd3696e17a21 to your computer and use it in GitHub Desktop.
Media queries - desktop to table to mobile
/* ----------------------------------------------------------------
MOBILE styles
-----------------------------------------------------------------*/
/* Any screen at 1200px and below */
@media only screen and (max-width: 1200px) {
}
/* Any screen between 1025px and 1199 */
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
}
/* Any screen at 1024px and below */
@media only screen and (max-width: 1024px) {
}
/* Any screen at 768px and below */
@media only screen and (max-width: 768px) {
}
/* Any screen at 480px and below */
@media only screen and (max-width: 480px) {
}
/* Any screen at 320px and below */
@media only screen and (max-width: 320px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment