Last active
December 23, 2015 22:29
-
-
Save nucleardreamer/6704080 to your computer and use it in GitHub Desktop.
ipad media blocks
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
/* iPad in portrait & landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) { /* STYLES GO HERE */} | |
/* iPad in landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : landscape) { /* STYLES GO HERE */} | |
/* iPad in portrait */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : portrait) { /* STYLES GO HERE */ } | |
/* iPad 3 & 4 Media Queries */ | |
/* Retina iPad in portrait & landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (-webkit-min-device-pixel-ratio: 2) { /* STYLES GO HERE */} | |
/* Retina iPad in landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : landscape) | |
and (-webkit-min-device-pixel-ratio: 2) { /* STYLES GO HERE */} | |
/* Retina iPad in portrait */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : portrait) | |
and (-webkit-min-device-pixel-ratio: 2) { /* STYLES GO HERE */ } | |
/* iPad 1 & 2 in portrait & landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (-webkit-min-device-pixel-ratio: 1){ /* STYLES GO HERE */} | |
/* iPad 1 & 2 in landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : landscape) | |
and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */} | |
/* iPad 1 & 2 in portrait */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : portrait) | |
and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */ } | |
/* iPad mini in portrait & landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */} | |
/* iPad mini in landscape */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : landscape) | |
and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */} | |
/* iPad mini in portrait */ | |
@media only screen | |
and (min-device-width : 768px) | |
and (max-device-width : 1024px) | |
and (orientation : portrait) | |
and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */ } | |
/* | |
iPad mini Resolution | |
Screen Width = 768px (CSS Pixels) | |
Screen Height = 1024px (CSS Pixels) | |
Screen Width = 768px (Actual Pixels) | |
Screen Height = 1024px (Actual Pixels) | |
Device-pixel-ratio: 1 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment