1div.dokuwiki div.quiz-block {
2    padding: 1em 1em 1em 1em;
3}
4
5div.quiz-block div.quiz-question {
6    padding: 1em 1em 0.1em 3em;
7    background-color: __background_other__;
8    background-image: url(images/question.png);
9    background-repeat: no-repeat;
10    background-position: top left;
11    margin-bottom: 0.8em;
12}
13
14div.quiz-block div.quiz-choice {
15    padding: 1em 1em 0.1em 3em;
16    background-color: __background_other__;
17    background-image: url(images/answer.png);
18    background-repeat: no-repeat;
19    background-position: top left;
20    margin-bottom: 0.8em;
21}
22
23div.quiz-block div.quiz-button {
24/*    border-top: 1px dashed __border__; */
25    padding: 0.5em 1em 0.3em 2em;
26    margin-bottom: 0.8em;
27	text-align:center;
28}
29
30div.quiz-block div.quiz-result {
31    padding: 0.5em 1em 0.3em 2em;
32    font-size: 130%;
33    font-weight: bold;
34    margin-bottom: 0.8em;
35	text-align:left;
36}
37
38div.quiz-block div.quiz-report {
39    padding: 0.5em 1em 0.3em 2em;
40    margin-bottom: 0.8em;
41}
42
43div.quiz-block div.quiz-missing {
44	background-color: #eef;
45}
46
47div.quiz-block div.quiz-correct {
48	background-color: #dfd;
49}
50
51div.quiz-block div.quiz-wrong {
52	background-color: #fdd;
53}
54