blob: 4b13e263cae6e59f512ad2e15338404e562b97f1 (
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
|
/** This is the stylesheet for the
* HTML code produced by the apt:/ ioslave
* (c) 2003 Sylvain Joyeux <[email protected]>
* Provided under the GPL licenses */
BODY {
background-color: white;
color: black;
}
table { margin-top: 1em; }
table.header {
margin-top: 0;
margin-bottom: 1em;
width: 90%;
font-weight: bold;
/* font-variant: small-caps; */
font-size: x-large;
color: #0855C5;
/*vertical-align: middle;*/
height: 85px;
background-color: #FFFFFF;
background-image: url("headerbg.png");
}
table.header td.logo {
width: 92px;
}
H2 { text-align: justify; }
table.version TR { padding-top: 1em; }
table.version TD { padding-top: 1em; vertical-align: top; }
table.version TD.attname { font-weight: bold; }
.footer {
margin-top: 3em;
font-size: small;
font-weight: bold;
text-align: center;
}
td.header-title {
vertical-align: top;
text-align: center;
padding-top: 1.5em;
font-size: 15pt;
}
td.links {
vertical-align: bottom;
}
/* global lind buttons at bottom of decorative header */
table.links {
float: right;
border:0;
padding: 1px 0 0 0;
margin: 0;
}
table.links td a {
color: white
}
table.links td:hover {
background-color:#0C4293;
}
table.links td a:hover {
color: white;
background-color:#0C4293
}
table.links td {
border-left: 1px solid #4A81D5;
padding: 0px 12px 0px 12px;
background-color:#0E4EAF;
font-size:9pt;
margin: 0;
/*font-weight: bold;*/
}
/******************************************
* Forms
*/
table.queryform {
margin: auto;
width: 80%;
}
table.query {
margin: auto;
margin-top: 1em;
}
table.queryform form {
margin: 2em;
}
table.query td.button {
text-align: center;
padding-top: .7em;
}
table.query td.title {
text-align: center;
font-weight: bold;
padding-bottom: .7em;
}
table.query td.button input[type="submit"] {
width: 40%;
}
/******************************************
* Show
*/
.error {
text-align: center;
font-weight: bold;
font-size: larger;
margin-top: 1em;
}
/*h3.version, h3.installed-version {
padding-left: 1em;
margin-top: 4em;
text-align: left;
background-color: #0855C5;
color: white;
}
h3.installed-version {
background-color: #FF3333;
}*/
.version-header, .version-header-installed {
font-size: larger;
font-weight: bold;
/*padding-left: 1em;*/
margin-top: 4em;
text-align: left;
color: white;
background-color: #0855C5;
}
.version-header-installed {
background-color: #F03333;
}
.version-header .links, .version-header-installed .links {
float: left;
color: white;
font-size:9pt;
background-color:#0C4293;
padding: 0px 12px 0px 12px;
margin: 0 1em 0 0;
border-left: 1px solid #4A81D5;
}
.version-header-installed .links {
background-color: #CC2222;
border-left: 1px solid #FF7D7F;
}
table.version {
margin-left: 3%;
width: 90%;
border-width: thin;
border-style: solid;
}
.command
{
margin-top: 1em;
margin-bottom: 1em;
text-align: center;
font-size: medium;
}
.filelist
{
margin-left: 5%;
}
/***************************
* Policy classes
*/
div.policy
{ margin-top: 1em; }
table.policy
{ margin: auto; }
table.policy TD
{ vertical-align: middle; }
table.curver {
border: solid thin;
margin-left: auto;
margin-right: 2em;
}
.curver form p {
margin: 0;
padding: 0;
}
.vtable {
border: solid thin;
margin-right: auto;
margin-left: 2em;
padding: .5em;
}
.vtable .header {
border-bottom: solid thin black;
text-align: center;
font-weight: bold;
}
.vtable-version {
font-weight: bold;
margin-right: 1em;
}
.vtable .version-pin {
font-weight: bold;
}
.vtable .location-pin {
font-weight: bold;
margin-left: 1em;
margin-right: 1em;
}
table.curver TD, table.vtable TD
{ width: auto;
vertical-align: top; }
table.vtable thead td {
font-weight: bold;
text-align: center;
border-bottom: solid thin;
}
table.curver form {
text-align: center;
}
.pin
{ font-weight: bold; }
.file
{ font-weight: bold; }
|