Last active
September 21, 2021 15:19
-
-
Save nicolasleal570/1309074b4380c20a6a793400753a90e0 to your computer and use it in GitHub Desktop.
Variables en 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
/* Setting up CSS variables */ | |
:root { | |
--main-color: #5480f6; | |
--main-hover-color: #5b5deb; | |
} | |
body { | |
/* Using CSS variables */ | |
background: var(--main-color); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment