Created
October 2, 2016 12:00
-
-
Save 0632347878/489246811bf248ab6de87280373c86d8 to your computer and use it in GitHub Desktop.
Media queries
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
/*Smartphones*/ | |
@media only screen and (max-width: 480px) {} | |
/* Small devices (tablets, 768px and up) */ | |
@media only screen and (max-width: 767px) {} | |
/* Medium devices (desktops, 992px and up) */ | |
@media only screen and (max-width: 992px) {} | |
/* Large devices (large desktops, 1200px and up) */ | |
@media only screen and (max-width: 1200px) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment