Skip to content

Instantly share code, notes, and snippets.

@tommymarshall
Created March 11, 2015 16:52
Show Gist options
  • Save tommymarshall/e575f8774da640caab0d to your computer and use it in GitHub Desktop.
Save tommymarshall/e575f8774da640caab0d to your computer and use it in GitHub Desktop.
CSStyle example
// CSStyle
@include component(button) {
display: block;
@include option(blue) {
color: blue;
}
@include part(icon) {
position: absolute;
}
}
// Normal (With BEM-ish)
.button {
display: block;
&.-blue {
color: blue;
}
}
.button__icon {
position: absolute;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment