I'm designing a responsive page that uses a few media queries and I'm trying to make it available on both touch and screens, so I have a rotator that rotates on hover action and I would like to skip it when it comes to touch screens. My question is this: many devices such as netbooks have the same screen size as iPads (iPads in landscape are 1024px which is the same as netbooks). Is there any way that I can write my queries only for touch devices? Something like this:
@media screen and (min-width:1024px) {.....} /*for netbooks*/
@media screen and (min-width:1024px) {.....} /*for ipads on landscape mode*/