31 lines
518 B
CSS
31 lines
518 B
CSS
|
|
|
|
/* ----------- HTC One ----------- */
|
|
|
|
/* Portrait and Landscape */
|
|
@media screen
|
|
and (device-width: 360px)
|
|
and (device-height: 640px)
|
|
and (-webkit-device-pixel-ratio: 3) {
|
|
|
|
}
|
|
|
|
/* Portrait */
|
|
@media screen
|
|
and (device-width: 360px)
|
|
and (device-height: 640px)
|
|
and (-webkit-device-pixel-ratio: 3)
|
|
and (orientation: portrait) {
|
|
|
|
}
|
|
|
|
/* Landscape */
|
|
@media screen
|
|
and (device-width: 360px)
|
|
and (device-height: 640px)
|
|
and (-webkit-device-pixel-ratio: 3)
|
|
and (orientation: landscape) {
|
|
|
|
}
|
|
|