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/9090754 to your computer and use it in GitHub Desktop.

Select an option

Save ericdouglas/9090754 to your computer and use it in GitHub Desktop.
Min-width Media Queries CSS
html {
font-size: 100%;
}
@media (min-width: 40rem) {
html {
font-size: 112%;
}
}
@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