Created
April 25, 2017 20:48
-
-
Save ivn-cote/e4dae80eb9d7a00f83ef58ebc19cb636 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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