Slide 120
Slide 120 text
/* CSS for desktop version */
@media
(min-width:320px) and
(max-width:380px) { /* make it white & 1 column */ }
@media
(min-width:381px) and
(max-width:480px) { /* make it white & 2 columns */ }
@media
(min-width:481px) and
(max-width:800px) { /* make it black & 2 columns */ }
/* all the way up... */
DON’T DO IT THIS WAY!
it led to cluttered, repeated, less-readable and hard-to-maintain CSS code