Last active
November 3, 2019 15:19
-
-
Save loughlincodes/e7cffe61de18e0db4ed3cd3696e17a21 to your computer and use it in GitHub Desktop.
Media queries - desktop to table to mobile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ---------------------------------------------------------------- | |
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