Skip to content

Instantly share code, notes, and snippets.

@JosueMagnus12
Last active October 7, 2021 17:25
Show Gist options
  • Save JosueMagnus12/f2177d83c2e38540dbe34a451c3ea45d to your computer and use it in GitHub Desktop.
Save JosueMagnus12/f2177d83c2e38540dbe34a451c3ea45d to your computer and use it in GitHub Desktop.
:root {
font-size: 62.5%;
}
h1 {
font-size: 2.6rem;
}
p {
font-size: 1.6rem;
}
/*For mobile devices*/
@media (max-width: 600px) {
h1 {
font-size: 2rem;
}
p {
font-size: 1.2rem;
}
}
/*for desktop*/
@media (min-width: 1000px) {
h1 {
font-size: 3.2rem;
}
p {
font-size: 2.1rem;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment