blob: df77d149c9b5ec711cfe704a8d5e8e89817d2a2a (
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
|
/*
* Search form (based on form-table)
*/
#search-txt, #search-txt input {width: 100%;}
#search-btn {padding-left: .4em;}
/*
* Package count.
*/
#count
{
font-size: 1.32em;
line-height: 1.4em;
color: #555;
margin: 1.2em 0 0 0;
}
/*
* Version table.
*/
.package
{
margin-top: .8em;
margin-bottom: .8em;
padding-top: .4em;
padding-bottom: .4em;
}
.package:nth-child(even) {background-color: rgba(0, 0, 0, 0.07);}
.package th {width: 6.4em;}
.package tr.name td .value,
.package tr.depends td .value,
.package tr.requires td .value
{
/* <code> style. */
font-family: monospace;
font-size: 0.94em;
}
|