Skip to content

Instantly share code, notes, and snippets.

@bloodyowl
Created January 21, 2014 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bloodyowl/8538859 to your computer and use it in GitHub Desktop.
Save bloodyowl/8538859 to your computer and use it in GitHub Desktop.
BEM using stylus
.Block
&-element
color: #000
&--modifier
color: #c33
&--modifier
position: relative
.Block-element {
color: #000;
}
.Block-element--modifier {
color: #c33;
}
.Block--modifier {
position: relative;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment