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
|
/*
Gentoo Bumpchecker Stylesheet
Copyright ©2009 Ben de Groot <yngwin@gentoo.org>
Licensed under the GPL version 2 (or later)
*/
/* limited reset */
html,body,div,span,h1,h2,h3,p,a,table,tr,th,td {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
background: transparent;
}
body {
background: #fff;
color: #555;
padding: 40px;
line-height: 1.2;
font-family: 'dejavu sans','bitstream vera sans',sans-serif;
font-size: .8em;
}
h1 {
font: bold 2.4em/1 georgia,serif;
margin-bottom: 1em;
}
p {
margin: .2em 0;
}
#stats {
margin: 1em 0;
}
table {
margin: 1em 0;
border: 1px solid #aaa;
}
th {
font-weight: bold;
}
th,td {
padding: 3px;
border: 1px solid #fff;
text-align: center;
}
.pn { text-align: left; }
.compliant { background: #8e8; }
.stableneedupdate { background: #acf; }
.needupdate { background: #f98; }
.notfound { background: #ddd; }
.newerversion { background: #fe8; }
|