Skip to content

Instantly share code, notes, and snippets.

@sapegin
Created December 15, 2011 08:41
Show Gist options
  • Save sapegin/1480393 to your computer and use it in GitHub Desktop.
Save sapegin/1480393 to your computer and use it in GitHub Desktop.
BEM in Stylus
.foo {
color: #f00;
}
.foo__bar {
color: #00f;
}
.foo {
color: red;
&__bar {
color: blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment