Skip to content

Instantly share code, notes, and snippets.

@ddprrt
Created August 21, 2014 17:14
Show Gist options
  • Save ddprrt/500fc43f85e727c4bfb3 to your computer and use it in GitHub Desktop.
Save ddprrt/500fc43f85e727c4bfb3 to your computer and use it in GitHub Desktop.
A Lessig File
@color: blue;
.mymixin() {
background-color: @color;
box-shadow+: inset 2px 2px 10px @color;
}
.myclass {
.mymixin;
box-shadow+: 10px 10px 0 black;
}
.test {
&:after {
content: '';
}
}
.another {
background-color: red;
}
.isittimeforanother {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment