Skip to content

Instantly share code, notes, and snippets.

@joshkennedy
Created June 30, 2018 11:26
Show Gist options
  • Save joshkennedy/4026449f8e0eed63ff1386567228f408 to your computer and use it in GitHub Desktop.
Save joshkennedy/4026449f8e0eed63ff1386567228f408 to your computer and use it in GitHub Desktop.
Responsive Typography
html {
font-size: 1rem;
}
@media screen and (min-width: 20rem) {
html {
font-size: calc(1rem + 0.3 * ((100vw - 20rem) / 100));
}
}
@media screen and (min-width: 120rem) {
html {
font-size: 1.3rem;
}
}
body {
font-weight: normal;
line-height: 1.6;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment