forked from aykevl/mta-sts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmta-sts.css
89 lines (82 loc) · 1.11 KB
/
mta-sts.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
82
83
84
85
86
87
88
89
body > .container-fluid {
max-width: 50rem;
}
h2 {
font-size: 2rem;
margin-top: 1.6rem;
}
h3 {
font-size: 1.25rem;
}
#templates {
display: none;
}
/* override Bootstrap */
dd {
margin-left: 1.5rem;
}
dt.ok:after {
content: '✔';
color: green;
}
dt.warn:after {
content: '⚠';
color: orange;
font-weight: bold;
}
dt.fail:after {
content: '✖';
color: red;
}
dt.none:after {
content: '?';
color: gray;
}
dt.off:after {
content: '➖';
color: blue;
font-weight: bold;
}
#report h3:before,
#report h3:before {
font-size: 1.75rem;
float: left;
line-height: 1;
}
#report h3.ok:before {
content: '✔';
color: green;
}
#report h3.warn:before {
content: '⚠';
color: orange;
font-weight: bold;
}
#report h3.fail:before {
content: '✖';
color: red;
}
#report h3.loading:before {
content: '⚙';
color: gray;
animation: spin 4s linear infinite;
}
#report h3.none:before {
content: '?';
color: gray;
}
#report h3:after {
content: "";
display: block;
clear: both;
}
#report h3 div,
#report h3 div {
margin-left: 2rem;
line-height: 2rem;
}
@keyframes spin {
100% {
transform:rotate(360deg);
}
}