-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (65 loc) · 1.08 KB
/
style.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.container {
padding-top: 20px;
}
.test-field {
display: none;
font-size: 50px;
}
.test-field #test_answer {
width: 150px;
text-align: center;
}
.test-field #submit_answer {
font-size: 30px;
padding-left: 30px;
padding-right: 30px;
line-height: 50px;
}
#test_ok, #test_fail, #test_late {
display: none;
}
#test_ok {
color: green;
}
#test_fail, #test_late {
color: red;
}
.progress .progress-bar {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.test-results {
display: none;
}
.test-results table.stats {
font-size: 30px;
}
.wrong {
background-color: red;
color: white;
}
.good {
background-color: green;
color: white;
}
.test-results table.stats th {
color: #ccc;
}
.test-results table.stats td, .test-results table.stats th {
width: 50px;
text-align: center;
}
.test-results table.stats td.num {
color: #ddd;
font-size: 20px;
padding-top: 15px;
}
#stats_add td, #stats_add th, #stats_sub td, #stats_sub th {
text-align: center;
font-size: 12px;
width: 30px;
padding: 2px 0;
}