Created
November 16, 2016 01:25
-
-
Save gregwhitworth/76d8b3f1680cb557a67fe7808338faa6 to your computer and use it in GitHub Desktop.
A basic overview of custom properties
This file contains 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 { | |
--primary: #0B61A4; | |
--secondary: #25567B; | |
} | |
header { | |
background: var(--primary); | |
border-bottom: 2px solid var(--secondary); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment