iPhone 6 – portrait & landscape
@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px) { /* AICI VINE SCRIS CODUL CSS */}
iPhone 6 – landscape
@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px)
and (orientation : landscape) { /* AICI VINE SCRIS CODUL CSS */}
iPhone 6 – portrait
@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px)
and (orientation : portrait) { /* AICI VINE SCRIS CODUL CSS */ }
iPhone 6 Plus – portrait & landscape
@media only screen
and (min-device-width : 414px)
and (max-device-width : 736px) { /* AICI VINE SCRIS CODUL CSS */}
iPhone 6 Plus – landscape
@media only screen
and (min-device-width : 414px)
and (max-device-width : 736px)
and (orientation : landscape) { /* AICI VINE SCRIS CODUL CSS */}
iPhone 6 Plus – portrait
@media only screen
and (min-device-width : 414px)
and (max-device-width : 736px)
and (orientation : portrait) { /* AICI VINE SCRIS CODUL CSS */ }
