-
Notifications
You must be signed in to change notification settings - Fork 15
/
styles.css
59 lines (50 loc) · 1.21 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* -*-CSS-*- */
.realtimequizplainbox {
padding: 10px;
margin: 10px;
}
.realtimequizbox {
background-color: #b8e5ef;
background-image: linear-gradient(#b8e5ef, #e1e8ea);
padding: 20px;
margin: 10px;
}
.realtimequiz_report_question {
background-color: #b8e5ef;
background-image: linear-gradient(#b8e5ef, #e1e8ea);
border-style: solid;
border-width: 1px;
}
.realtimequiz_report_question_correct {
background-color: #81dca3;
background-image: linear-gradient(#72e07f, #81dca3);
border-style: solid;
border-width: 1px;
}
.realtimequiz_report_answer {
background-color: #e1e8ea;
background-image: linear-gradient(#e1e8ea, #fbfdfd);
border-style: solid;
border-width: 1px;
}
.realtimequiz_report_answer_correct {
background-color: #81dca3;
background-image: linear-gradient(#81dca3, #fbfdfd);
border-style: solid;
border-width: 1px;
}
.realtimequiz_editquestion {
display: inline-block;
width: 70%;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
margin-right: 5px;
}
.realtimequiz_editicons {
display: inline-block;
width: 20%;
}
.realtimequiz_highlight_correct {
background-color: #81dca3;
}