Looking to customize CSS media queries specifically for mobile devices, like so:
@media (min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 1.5dppx) {
/* your retina rules here */
}
I'm curious about the correct settings for targeting mobile phones only, excluding tablets and larger screens. Any suggestions?