blob: cd8b1af8e2ba8941b84e267f723bc239baac89a5 (
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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
html {
min-height: 100%;
background: #fff;
}
a {
text-decoration: none;
color: #048;
}
a:hover {
color: #06C;
}
img {
border:0;
}
body {
color: #444;
font-family: "Bitstream Vera Sans", "DejaVu Sans", Arial;
margin: 0;
padding: 0;
}
p, li {
max-width: 800px;
}
.center {
text-align: center;
margin-top: 100px;
}
.center p {
max-width: 100%;
}
.clearer {
clear: both;
font-size: 0;
}
.small {
font-size:70%;
}
.top {
background: #444;
color: #fff;
padding-left: 5px;
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 3px double gray;
}
.top .right {
float: right;
padding-right: 10px;
}
#login-form {
visibility: hidden;
position: absolute;
right: 0;
top: 0;
/* these help to keep the box displayed once the user hovered over login*/
padding-top: 35px;
padding-left: 10px;
padding-bottom: 10px;
}
a:hover #login-form {
visibility: visible;
}
.top a {
color: lightblue;
}
.content {
padding-left:13px;
padding-top:13px;
}
table {
border-collapse: collapse;
}
.results {
font-size: 0.75em;
}
.results th {
padding: 0.5em 1em 0.25em 0.25em;
background: #fff;
border-bottom: 1px solid #999;
text-align: left;
}
.results td {
padding: 0.3em 1em 0.3em 0.25em;
}
.results tr:hover {
background: #ddf;
}
tr.even {
background: #eef;
}
tr.odd {
background: #fff;
}
.example {
font-weight: bold;
}
td.title {
text-align: right;
color: #999;
font-size: 90%;
padding: 3px;
}
td.text {
text-align: left;
padding: 3px;
}
|