Created
March 1, 2016 08:34
-
-
Save CB9TOIIIA/838736907eeb28751186 to your computer and use it in GitHub Desktop.
MEDIA QUERIES CSS
This file contains hidden or 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
/********************* | |
MEDIA QUERIES | |
*********************/ | |
@media screen and (min-width: 220px) and (max-width: 480px) { } | |
@media screen and (min-width: 481px) and (max-width: 767px) { } | |
@media screen and (min-width: 768px) and (max-width: 992px) { } | |
@media screen and (min-width: 993px) and (max-width: 1200px) { } | |
@media screen and (min-width: 1200px) and (max-width: 1365px) { } | |
@media screen and (min-width: 1366px) { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment