Skip to content

Instantly share code, notes, and snippets.

@allmarkedup
Created July 21, 2012 14:03
Show Gist options
  • Save allmarkedup/3155891 to your computer and use it in GitHub Desktop.
Save allmarkedup/3155891 to your computer and use it in GitHub Desktop.
on variables and mixins in css
@variables {
myCompanyBrandingColour: #F00;
myCompanyFonts: 'Comic Sans', Arial, sans-serif;
}
#header {
background-color: var(myCompanyBrandingColour);
}
p {
font-family: var(myCompanyFonts);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment