Skip to content

Instantly share code, notes, and snippets.

@gregwhitworth
Created November 16, 2016 01:25
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 gregwhitworth/76d8b3f1680cb557a67fe7808338faa6 to your computer and use it in GitHub Desktop.
Save gregwhitworth/76d8b3f1680cb557a67fe7808338faa6 to your computer and use it in GitHub Desktop.
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