Skip to content

Instantly share code, notes, and snippets.

@AZaviruha
Created June 28, 2017 06:31
Show Gist options
  • Save AZaviruha/7f6bc9510d05da4c1ee543f354dbcbb6 to your computer and use it in GitHub Desktop.
Save AZaviruha/7f6bc9510d05da4c1ee543f354dbcbb6 to your computer and use it in GitHub Desktop.
Anki multiple checkboxes example (styles)
.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