-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathstyles.css
70 lines (60 loc) · 1.13 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
60
61
62
63
64
65
66
67
68
69
70
/* CSS Document */
#benchmark h3 {
border: 1px solid #ddd;
width: 450px;
margin: 20px auto 30px auto;
padding: 10px 0;
border-radius: 4px;
background: #f5f5f5;
text-align: center;
}
#benchmark h3 span {
color: #0a0;
}
#benchmark h5 {
margin-top: 16px;
font-size: 14px;
}
#benchmark .continuebutton a.btn {
margin: 0 10px 10px 10px;
}
#benchmarkresult td {
vertical-align: middle;
}
#benchmarkresult td.success {
background-color: #dff0d8;
}
#benchmarkresult td.warning {
background-color: #fcf8e3;
}
#benchmarkresult td.danger {
background-color: #f2dede;
}
#benchmarkresult .cell.c1 small {
color: #888;
}
#benchmarkresult .cell.c0,
#benchmarkresult .footer {
font-weight: bold;
}
#benchmarkresult .c0,
#benchmarkresult .c2,
#benchmarkresult .c3,
#benchmarkresult .c4 {
text-align: center;
}
#benchmarkresult .footer td {
background-color: #fff;
}
#benchmarkresult .footer .cell.c0 {
text-align: right;
}
#benchmarkresult .footer .cell.c1 {
text-align: center;
}
@media (max-width: 500px) {
#benchmark h3 {
font-size: 20px;
width: 348px;
}
}