Commit | Line | Data |
---|---|---|
71d1ca9c BA |
1 | /* TODO: factor this piece of code from assessment (and course, and here...) */ |
2 | .question { | |
3 | margin: 20px 5px; | |
4 | padding: 15px 0; | |
5 | } | |
6 | .question label { | |
7 | color: black; | |
8 | } | |
9 | .question .choiceCorrect { | |
10 | background-color: lightgreen; | |
11 | } | |
12 | .question .choiceWrong { | |
13 | background-color: peachpuff; | |
14 | } | |
15 | .question .wording { | |
16 | margin-bottom: 10px; | |
17 | } | |
18 | .question .option { | |
19 | margin-left: 15px; | |
20 | } | |
21 | .question p { | |
22 | margin-top: 10px; | |
23 | } | |
24 | .questionInactive { | |
25 | background-color: lightgrey; | |
26 | } | |
27 | .introduction { | |
28 | padding: 20px 5px; | |
29 | } | |
30 | .conclusion { | |
31 | padding: 20px 5px; | |
32 | } | |
33 | table.in-question { | |
34 | border: 1px solid black; | |
35 | width: auto; | |
36 | margin: 10px auto; | |
37 | } | |
38 | table.in-question th, table.in-question td { | |
39 | padding: 3px; | |
40 | border-bottom: 1px solid grey; | |
41 | } |