Created
June 30, 2018 11:26
-
-
Save joshkennedy/4026449f8e0eed63ff1386567228f408 to your computer and use it in GitHub Desktop.
Responsive Typography
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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