DEVICE/BROWSER INFO
aatventure
Media queries to help designers & developers save some time searching. I'll try to continue adding as much media queries as possible.
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width : 375px)
and (max-device-width : 812px)
and (-webkit-device-pixel-ratio : 3) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width : 375px)
and (max-device-width : 812px)
and (-webkit-device-pixel-ratio : 3)
and (orientation : portrait) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width : 375px)
and (max-device-width : 812px)
and (-webkit-device-pixel-ratio : 3)
and (orientation : landscape) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (orientation : portrait) {
/* STYLES GO HERE */
}
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (orientation : landscape) {
/* STYLES GO HERE */
}