Skip to content

Instantly share code, notes, and snippets.

@stevenharman
Created February 18, 2011 19:12
Show Gist options
  • Save stevenharman/834221 to your computer and use it in GitHub Desktop.
Save stevenharman/834221 to your computer and use it in GitHub Desktop.
Using variables w/in a namespace
#forms {
@input: #454545;
@input_border: #CCCCCC;
}
/* then, somewhere later try to use that */
fieldset {
input {
color: #forms > @input; /* maybe #forms[@input] is a better syntax?
border: 1px solid #forms > @input_border;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment