blob: a020cd3eea553c191f6055ba75803e3f6184772a (
plain)
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
|
.pass:before {
content: "✔ ";
color: #8ae234;
font-size: 18px;
vertical-align: top;
}
.neutral:before {
content: "😐";
color: #cab388;
font-size: 18px;
vertical-align: top;
}
.fail:before,
.denylisted:before {
content: "✖ ";
color: #ef2929;
font-size: 18px;
vertical-align: top;
}
.tmpfail:before {
content: "⚠ ";
color: #ffd862;
font-size: 18px;
vertical-align: top;
}
.error:before {
content: "😅 ";
color: brown;
font-size: 18px;
vertical-align: top;
}
.panel .panel-heading {
font-size: 130%;
}
/* package browsing by prefix */
.list-inline h5 a {
color: #E90051;
background-color: #eeeeec;
padding: 1px 10px;
border-radius: 5px;
}
.list-inline h5 a:hover {
text-decoration: none;
background-color: #E90051;
color: white;
}
.nowrap {
white-space: nowrap;
}
|