Created
January 26, 2011 00:32
-
-
Save veganstraightedge/796004 to your computer and use it in GitHub Desktop.
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
/* iphone... */ | |
@media screen and (max-device-width: 480px) { | |
} | |
/* ...iphone */ | |
/* iphone portrait... */ | |
@media screen and (max-device-width: 480px) and (orientation:portrait) { | |
} | |
/* ...iphone portrait */ | |
/* iphone landscape... */ | |
@media screen and (max-device-width: 480px) and (orientation:landscape) { | |
} | |
/* ...iphone landscape */ | |
/* narrow screens... */ | |
@media screen and (max-width: 680px) { | |
} | |
@media screen and (max-width: 880px) { | |
} | |
@media screen and (min-width: 450px) and (max-width: 880px) { | |
} | |
/* ...narrow screens */ | |
/* wide screens... */ | |
@media screen and (min-width: 1000px) { | |
} | |
@media screen and (min-width: 1200px) { | |
} | |
@media screen and (min-width: 1450px) { | |
} | |
/* ...wide screens */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment