Created
July 29, 2021 20:59
-
-
Save Sensiblemnd/3d277b7deb6da4b4c32c3fa4500c1793 to your computer and use it in GitHub Desktop.
Base Css Root fileexample
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 { | |
--header-height: 3rem; | |
/*========== Colors ==========*/ | |
/* Change favorite color to match images */ | |
--hue-color: ; | |
/* HSL color mode */ | |
--color: hsl(var(--hue-color), 64%, 22%); | |
/*========== Font and typography ==========*/ | |
--body-font: 'Open Sans', sans-serif; | |
--title-font: sans-serif; | |
--biggest-font-size: 2.5rem; | |
/*========== Font weight ==========*/ | |
--font-medium: 500; | |
--font-semi-bold: 600; | |
/*========== Margins ==========*/ | |
/*========== z index ==========*/ | |
/*========== Hover overlay ==========*/ | |
} | |
/*========== Example Media ==========*/ | |
@media screen and (min-width: 968px) { | |
:root { | |
--size: 4rem; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment