Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*iPad Pro 9.7"*/
- /* 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) {
- }
- /*iPad Pro 10.5"*/
- /* Portrait */
- /* Declare the same value for min- and max-width to avoid colliding with desktops */
- @media only screen
- and (min-device-width: 834px)
- and (max-device-width: 834px)
- and (orientation: portrait)
- and (-webkit-min-device-pixel-ratio: 2) {
- }
- /* Landscape */
- /* Declare the same value for min- and max-width to avoid colliding with desktops */
- @media only screen
- and (min-device-width: 1112px)
- and (max-device-width: 1112px)
- and (orientation: landscape)
- and (-webkit-min-device-pixel-ratio: 2) {
- }
- /*ipad PRo 12.9"*/
- /* Portrait */
- /* Declare the same value for min- and max-width to avoid colliding with desktops */
- @media only screen
- and (min-device-width: 1024px)
- and (max-device-width: 1024px)
- and (orientation: portrait)
- and (-webkit-min-device-pixel-ratio: 2) {
- }
- /* Landscape */
- /* Declare the same value for min- and max-width to avoid colliding with desktops */
- @media only screen
- and (min-device-width: 1366px)
- and (max-device-width: 1366px)
- and (orientation: landscape)
- and (-webkit-min-device-pixel-ratio: 2) {
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement