Curious as to how the browser would react to several hundred media queries, I decided to create this experiment.
In order to demonstrate each individual media query, I found a list of over 1,000 unique colors to use to apply a unique background color to each media query. To make sure the text color is readable on top of any given background color, I used Sass to return the complementary color of the background color. I had to compile my Sass locally because it was too big of a task for CodePen to handle. So, the CSS you see here is what was compiled on my machine and copy/pasted into this Pen.
The first media query kicks in at min-width: 320px, and each new media query thereafter increments by 1px. This continues all the way up to min-width: 1400px.
Resize your the preview window and watch the colors change as the media queries kick in!
WARNING: Use at your own risk
A Pen by Fernando Agüero on CodePen.