Skip to content

Instantly share code, notes, and snippets.

@gregwhitworth
Created November 16, 2016 01:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
A basic overview of custom properties
: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