Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 26, 2019 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/c292b0e550d2e2d4f9e156d884b14e13 to your computer and use it in GitHub Desktop.
Save parzibyte/c292b0e550d2e2d4f9e156d884b14e13 to your computer and use it in GitHub Desktop.
:root{
--titulos: red;
--subtitulos: yellow;
--parrafos: blue;
--borde: 2px solid red;
}
h1{
color: red;
color: var(--titulos, green);
}
h2{
color: green;
color: var(--subtitulos, yellow);
}
p{
border: var(--borde);
color: green;
color: var(--parrafos, yellow);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment