|
1 .Ldt-QuizCreator-Ui { |
|
2 width: 100%; |
|
3 padding: 10px; |
|
4 } |
|
5 |
|
6 .Ldt-QuizCreator-Form { |
|
7 width: 100%; |
|
8 } |
|
9 |
|
10 .Ldt-QuizCreator-Question-Type { |
|
11 } |
|
12 |
|
13 .Ldt-QuizCreator-Question-Area, |
|
14 .Ldt-QuizCreator-Resource-Area { |
|
15 width: calc(100% - 20px); |
|
16 } |
|
17 |
|
18 .Ldt-QuizCreator-Questions-Block { |
|
19 width: 100%; |
|
20 } |
|
21 |
|
22 .Ldt-QuizCreator-Questions-Answer { |
|
23 margin-top: 5px; |
|
24 border-top: 1px solid black; |
|
25 } |
|
26 |
|
27 .Ldt-QuizCreator-Questions-Answer div { |
|
28 display: inline-block; |
|
29 vertical-align: middle; |
|
30 } |
|
31 |
|
32 .Ldt-QuizCreator-Questions-Answer-Content { |
|
33 width: calc(100% - 80px); |
|
34 } |
|
35 |
|
36 .Ldt-QuizCreator-Questions-Answer-Content input, .Ldt-QuizCreator-Questions-Answer-Content textarea { |
|
37 width: calc(100% - 20px); |
|
38 } |
|
39 |
|
40 .Ldt-QuizCreator-Questions-Answer-Time input { |
|
41 width: 60px; |
|
42 } |
|
43 |
|
44 .Ldt-QuizCreator-Questions-Answer-Delete { |
|
45 width: 15px; |
|
46 height: 15px; |
|
47 } |
|
48 |
|
49 .Ldt-QuizCreator-Remove { |
|
50 width: 15px; |
|
51 height: 15px; |
|
52 margin-left: 8px; |
|
53 cursor: pointer; |
|
54 background: url(img/delete.png); |
|
55 } |
|
56 |
|
57 input.quiz-question-edition { |
|
58 display: none; |
|
59 } |
|
60 |
|
61 input.quiz-question-edition[type='radio'] + label, |
|
62 input.quiz-question-edition[type='checkbox'] + label { |
|
63 height: 12px; |
|
64 width: 24px; |
|
65 display: inline-block; |
|
66 background: url(img/min_wrong_toggle.png); |
|
67 cursor: pointer; |
|
68 content: "Mauvaise"; |
|
69 } |
|
70 |
|
71 input.quiz-question-edition[type='radio']:checked + label, |
|
72 input.quiz-question-edition[type='checkbox']:checked + label { |
|
73 background: url(img/min_right_toggle.png); |
|
74 content: "Bonne"; |
|
75 } |