blob: ff8ce97f3c8ae72cf215d3b4a7d368dbab1068c5 (
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
59
60
61
62
|
div.formbox {
background-color: #FFEDA5;
max-width: 20em;
min-width: 15em;
padding: 5px;
position: relative;
margin-left: auto;
margin-right: auto;
margin-bottom: 3em;
border: 1px solid #FFCF75;
text-align: center;
}
input[type=text] {
font-family: monospace
}
div.statistics {
font-size: 8px;
color: lightgray;
text-align: center;
margin-top: 3em;
}
div.authors {
font-size: 8px;
color: lightgray;
text-align: center;
}
div.hit {
margin-left: 3em;
margin-right: 3em;
margin-top: 1em;
margin-bottom: 1em;
}
div.hit div.hit_package span.name {
font-weight: bold;
}
div.hit div.hit_statistics {
font-style: italic;
}
body {
margin: 2em;
font-family: sans-serif;
}
div.n_hits {
margin-bottom: 2em;
}
div.linkbox {
margin-left: 40%;
margin-right: auto;
}
ul.links li {
display:inline;
}
|