Last active
June 23, 2019 22:26
-
-
Save skobba/3e1a2857e6e84dc2acc5f6a59caf655a to your computer and use it in GitHub Desktop.
css rem px
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
| h1 - 2.8rem (62px) | |
| p - 1.6rem (16px) | |
| <span> | |
| display: inline; /* the default for span */ | |
| html { | |
| font-size: 62.5%; | |
| } | |
| body { | |
| background-color: $color6; | |
| font-family: "heebo", "helvetica", sans-serif; | |
| font-weight: 400; | |
| font-size: 1.6rem; | |
| line-height: 1.6em; | |
| color: $color1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment