Skip to content

Instantly share code, notes, and snippets.

@Sensiblemnd
Created July 29, 2021 20:59
Show Gist options
  • Save Sensiblemnd/3d277b7deb6da4b4c32c3fa4500c1793 to your computer and use it in GitHub Desktop.
Save Sensiblemnd/3d277b7deb6da4b4c32c3fa4500c1793 to your computer and use it in GitHub Desktop.
Base Css Root fileexample
: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