Created
November 16, 2022 20:50
-
-
Save mrsoftware/6512a99e39279f633a8047a750630b23 to your computer and use it in GitHub Desktop.
some reusable css
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
:root { | |
--clr-primery-200: some color; | |
--ff-primery: "Roboto", sans-serif; | |
} | |
*, *::before, *::after { | |
box-sizing: border-box; | |
} | |
body, h1, h2, h3, p { | |
margin: 0; | |
} | |
body { | |
font-family: var(--ff-primery); | |
font-weight: 400; | |
font-size: 1.3125rem | |
line-height: 1.6; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment