Skip to content

Instantly share code, notes, and snippets.

@ddprrt
Created August 21, 2014 17:17
Show Gist options
  • Save ddprrt/97b85b917a13eccb0f6d to your computer and use it in GitHub Desktop.
Save ddprrt/97b85b917a13eccb0f6d 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 {
background-color: blue;
&:after {
content: '';
}
}
.test-2 {
background-color: #fff;
padding: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment