Skip to content

Instantly share code, notes, and snippets.

@ericdouglas
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save ericdouglas/9090711 to your computer and use it in GitHub Desktop.

Select an option

Save ericdouglas/9090711 to your computer and use it in GitHub Desktop.
Min-width Media Queries CSS
// Small screens (default)
html
font-size 100%
// Media screens (640px)
@media (min-width: 40rem)
html
font-size 112%
// Large screens (1024px)
@media (min-width: 64rem)
html
font-size 120%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment