Skip to content

Instantly share code, notes, and snippets.

@ivn-cote
Created April 25, 2017 20:48
Show Gist options
  • Select an option

  • Save ivn-cote/e4dae80eb9d7a00f83ef58ebc19cb636 to your computer and use it in GitHub Desktop.

Select an option

Save ivn-cote/e4dae80eb9d7a00f83ef58ebc19cb636 to your computer and use it in GitHub Desktop.
// bad
.varenik {
background-color: white;
}
.varenik.varenik_fill_cherry {
color: red;
width: 200%;
border-radius: 20%;
}
.varenik.varenik_pirog {
width: 400%;
border: 5rem;
border-radius: 50%;
background-color: wheat;
}
// good
.varenik {
background-color: white;
}
.varenik.varenik_fill_cherry {
color: red;
width: 200%;
border-radius: 20%;
}
.pirog {
width: 400%;
border: 5rem;
border-radius: 50%;
background-color: wheat;
}
.pirog.pirog_with_cherry {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment