While refactoring my main css into a modular approach I'm using @media all {}
to wrap css modules in the IDE. This approach makes it much more easy to scan the files' content as we can't use a preprocessor like less or sass right now.
My only concern is that all those media queries (one for each css module / set of coherent selectors) might cause a performance hit while rendering the site. I am NOT concerned about the file size of our css files as this is a minor issue with a slim modular css framework and proper zipping.
Do media queries like @media all {}
have an impact on the performance (both on desktop and mobile/other) devices if used to frequently?