Created
August 18, 2013 11:20
-
-
Save csakiistvan/6261173 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
@media only screen and (min-width: 480px) { | |
} | |
@media only screen and (min-width: 600px) { | |
} | |
@media only screen and (min-width: 768px) { | |
} | |
@media only screen and (min-width: 992px) { | |
} | |
@media only screen and (min-width: 1382px) { | |
} | |
/* landscape ipad tablet */ | |
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) { | |
} | |
/* iPhone 4, 4S Retina landscape */ | |
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) { | |
} | |
/* Standing retina screen */ | |
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 600px){ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment