Last active
October 10, 2018 18:28
-
-
Save edy2310/1eb2307c55baa64ba2fa4250d84d88e9 to your computer and use it in GitHub Desktop.
CSS Variables
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 { | |
--colorCat: coral; | |
} | |
.cat{ | |
color: var(--colorCat); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment