34 lines
688 B
CSS
34 lines
688 B
CSS
|
|
|
|
/* ----------- Asus Nexus 7 ----------- */
|
|
|
|
/* Portrait and Landscape */
|
|
@media screen
|
|
and (device-width: 601px)
|
|
and (device-height: 906px)
|
|
and (-webkit-min-device-pixel-ratio: 1.331)
|
|
and (-webkit-max-device-pixel-ratio: 1.332) {
|
|
|
|
}
|
|
|
|
/* Portrait */
|
|
@media screen
|
|
and (device-width: 601px)
|
|
and (device-height: 906px)
|
|
and (-webkit-min-device-pixel-ratio: 1.331)
|
|
and (-webkit-max-device-pixel-ratio: 1.332)
|
|
and (orientation: portrait) {
|
|
|
|
}
|
|
|
|
/* Landscape */
|
|
@media screen
|
|
and (device-width: 601px)
|
|
and (device-height: 906px)
|
|
and (-webkit-min-device-pixel-ratio: 1.331)
|
|
and (-webkit-max-device-pixel-ratio: 1.332)
|
|
and (orientation: landscape) {
|
|
|
|
}
|
|
|