mirror of
https://github.com/kennethreitz/wordpress-theme-skeleton.git
synced 2026-06-05 23:20:18 +00:00
15 lines
305 B
CSS
15 lines
305 B
CSS
@media only screen and (orientation:portrait) {
|
|
/* iPad in Portrait orientation */
|
|
|
|
}
|
|
|
|
@media only screen (orientation:landscape) {
|
|
/* iPad in Landscape orientation */
|
|
|
|
}
|
|
|
|
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
|
|
/* iPhone apps on iPad with Web Views */
|
|
|
|
}
|