Plug Panda
Nobody knows what it means, but its provocative!
Configuration
Reference
Style Guides
Roughly following these:
And to a lesser extent these:
SCSS BEM Style:
.block {
background-color: white;
&--active {
background-color: gray;
}
&__element {
color: red;
&--active {
color: blue;
}
}
&__another-element {
background-color: red;
&--active {
background-color: blue;
}
}
}