Skip to content

Instantly share code, notes, and snippets.

@zznobzz
Created March 2, 2020 14:19
Show Gist options
  • Save zznobzz/186e113bf8377efe546334f2de6167b6 to your computer and use it in GitHub Desktop.
Save zznobzz/186e113bf8377efe546334f2de6167b6 to your computer and use it in GitHub Desktop.
html {
font-size: 62.5%; /* 62.5% of 16px = 10px */
@media (min-width: 20rem) {
/* 20*16px = 320px */
background-color: lemonchiffon;
font-size: 200%;
/* 200% of 16px = 32px */
}
@media (min-width: 30em) {
/* 30*16px = 480px */
background-color: lightblue;
font-size: 300%; /* 300% of 16px = 48px */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment