I use http://www.w3.org/TR/css3-mediaqueries/ to have different design depending on the available viewport.
In order for my search-and-replace to work, for every time I decide to adjust the cut-off points, I'd like to clearly negate @media (min-width: 500px)
, which intersects on (max-width: 500px)
, and, therefore, has to be manually negated as (max-width: 499px)
instead, which then breaks search-and-replace.
I've tried not (min-width: 500px)
, but it doesn't seem to work at all. Is there a way to negate @media (min-width: 500px)
, such that the negative query will still have 500px
in it, for my search-and-replace to work?