Created
July 21, 2012 14:03
-
-
Save allmarkedup/3155891 to your computer and use it in GitHub Desktop.
on variables and mixins in css
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
@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