/*ipad*/ @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait){ } /*ipad mini*/ @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 1){ } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 1){ } /*ipad Retina*/ @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio: 2){ } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 2){ } /*iphone5*/ @media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape){ } @media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait){ } /*iphone4*/ @media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape){ } @media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait){ }