85 lines
1.7 KiB
CSS
85 lines
1.7 KiB
CSS
|
|
|
|
/* ----------- iPad mini ----------- */
|
|
|
|
/* Portrait and Landscape */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (-webkit-min-device-pixel-ratio: 1) {
|
|
|
|
}
|
|
|
|
/* Portrait */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (orientation: portrait)
|
|
and (-webkit-min-device-pixel-ratio: 1) {
|
|
|
|
}
|
|
|
|
/* Landscape */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (orientation: landscape)
|
|
and (-webkit-min-device-pixel-ratio: 1) {
|
|
|
|
}
|
|
|
|
/* ----------- iPad 1 and 2 ----------- */
|
|
/* Portrait and Landscape */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (-webkit-min-device-pixel-ratio: 1) {
|
|
|
|
}
|
|
|
|
/* Portrait */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (orientation: portrait)
|
|
and (-webkit-min-device-pixel-ratio: 1) {
|
|
|
|
}
|
|
|
|
/* Landscape */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (orientation: landscape)
|
|
and (-webkit-min-device-pixel-ratio: 1) {
|
|
|
|
}
|
|
|
|
/* ----------- iPad 3 and 4 ----------- */
|
|
/* Portrait and Landscape */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (-webkit-min-device-pixel-ratio: 2) {
|
|
|
|
}
|
|
|
|
/* Portrait */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (orientation: portrait)
|
|
and (-webkit-min-device-pixel-ratio: 2) {
|
|
|
|
}
|
|
|
|
/* Landscape */
|
|
@media only screen
|
|
and (min-device-width: 768px)
|
|
and (max-device-width: 1024px)
|
|
and (orientation: landscape)
|
|
and (-webkit-min-device-pixel-ratio: 2) {
|
|
|
|
}
|
|
|