Created
June 28, 2017 06:31
-
-
Save AZaviruha/7f6bc9510d05da4c1ee543f354dbcbb6 to your computer and use it in GitHub Desktop.
Anki multiple checkboxes example (styles)
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
.card { | |
font-family: arial; | |
font-size: 20px; | |
text-align: center; | |
color: black; | |
background-color: #EEDFA6; | |
} | |
.question-text{ | |
text-align: left | |
} | |
.all-variants { display: none; } | |
.correct-variants { display: none; } | |
.checkbox-item { | |
margin-top: 10px; | |
} | |
.checkbox-item.correct-answer { | |
background-color: green; | |
} | |
.checkbox-item.wrong-checked { | |
background-color: red; | |
} | |
.checkbox-item.wrong-unchecked { | |
border: 3px solid red; | |
background-color: orange; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment