Last active
June 13, 2016 14:25
-
-
Save rcerrejon/a9ab6d7d2d8e46f84ecf1c184eea78ec to your computer and use it in GitHub Desktop.
Media Queries
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
/* Mobile */ | |
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) { | |
} | |
/* Tablet Portrait */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { | |
} | |
/* Tablet Landscape */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment