CSS: Is there a shorter way to write multiple media queries?
This is the code I've written out, but there has to be a more condensed, elegant, and effective way to write media queries for scaling screens, right? selector { padding-left: 19% } @media only screen and (min-width: 1300px) { selector…