Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
771 blopes 1
/*
2
  Licensed to the Apache Software Foundation (ASF) under one or more
3
  contributor license agreements.  See the NOTICE file distributed with
4
  this work for additional information regarding copyright ownership.
5
  The ASF licenses this file to You under the Apache License, Version 2.0
6
  (the "License"); you may not use this file except in compliance with
7
  the License.  You may obtain a copy of the License at
8
 
9
      http://www.apache.org/licenses/LICENSE-2.0
10
 
11
  Unless required by applicable law or agreed to in writing, software
12
  distributed under the License is distributed on an "AS IS" BASIS,
13
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
  See the License for the specific language governing permissions and
15
  limitations under the License.
16
*/
17
body {
18
    margin: 10px 20px;
19
    text-align: center;
20
    font-family: Arial, sans-serif;
21
}
22
 
23
h1,
24
h2,
25
h3,
26
h4,
27
h5,
28
h6,
29
p,
30
ul,
31
ol {
32
    margin: 0 0 0.5em;
33
}
34
 
35
h1 {
36
    font-size: 18pt;
37
    margin: 0.5em 0 0;
38
}
39
 
40
h2 {
41
    font-size: 16pt;
42
}
43
 
44
h3 {
45
    font-size: 13pt;
46
}
47
 
48
h4 {
49
    font-size: 12pt;
50
}
51
 
52
h5 {
53
    font-size: 11pt;
54
}
55
 
56
p {
57
    font-size: 11pt
58
}
59
 
60
ul {
61
    margin: 0;
62
    padding: 0 0 0 0.25em;
63
    text-indent: 0;
64
    list-style: none;
65
}
66
 
67
li {
68
    margin: 0;
69
    padding: 0 0 0.25em;
70
    text-indent: 0;
71
    font-size: 80%;
72
}
73
 
74
pre {
75
    text-indent: 0.25em;
76
    width: 90%;
77
    font-size: 90%;
78
}
79
 
80
br.separator {
81
    margin: 0;
82
    padding: 0;
83
    clear: both;
84
}
85
 
86
a img {
87
    border: 0 none;
88
}
89
 
90
.container {
91
    padding: 10px;
92
    margin: 0 0 10px;
93
}
94
 
95
.col20 {
96
    float: left;
97
    width: 20%;
98
}
99
 
100
.col25 {
101
    float: left;
102
    width: 25%;
103
}
104
 
105
#wrapper {
106
    display: block;
107
    margin: 0 auto;
108
    text-align: left;
109
    min-width: 720px;
110
    max-width: 1000px;
111
}
112
 
113
.curved {
114
    border-radius: 10px;
115
}
116
 
117
#tomcat-logo {
118
    width: 150px;
119
    height: 106px;
120
}
121
 
122
#navigation {
123
    background: #eee url(bg-nav.png) repeat-x top left;
124
    margin: 0 0 10px;
125
    padding: 0;
126
}
127
 
128
#navigation span {
129
    float: left;
130
}
131
 
132
#navigation span a {
133
    display: block;
134
    padding: 10px;
135
    font-weight: bold;
136
    text-shadow: 1px 1px 1px #fff;
137
}
138
 
139
#navigation span a:link,
140
#navigation span a:visited,
141
#navigation span a:hover,
142
#navigation span a:active {
143
    color: #666;
144
    text-decoration: none;
145
}
146
 
147
#navigation span#nav-help {
148
    float: right;
149
    margin-right: 0;
150
}
151
 
152
#asf-box {
153
    height: 40px;
154
    background: #fff url(asf-logo-wide.svg) no-repeat top right;
155
}
156
 
157
#asf-box h1 {
158
    margin: 0;
159
    line-height: 1.5;
160
}
161
 
162
#upper {
163
    background: #fff url(bg-upper.png) repeat-x top left;
164
}
165
 
166
#congrats {
167
    text-align: center;
168
    padding: 10px;
169
    margin: 0 40px 20px;
170
    background-color: #9c9;
171
}
172
 
173
#congrats h2 {
174
    font-size: 14pt;
175
    padding: 0;
176
    margin: 0;
177
    color: #fff;
178
}
179
 
180
#notice {
181
    float: left;
182
    width: 560px;
183
    color: #696;
184
}
185
 
186
#notice a:link,
187
#notice a:visited,
188
#notice a:hover,
189
#notice a:active {
190
    color: #090;
191
    text-decoration: none;
192
}
193
 
194
#notice img,
195
#notice #tasks {
196
    float: left;
197
}
198
 
199
#tasks a:link,
200
#tasks a:visited,
201
#tasks a:hover,
202
#tasks a:active {
203
    text-decoration: underline;
204
}
205
 
206
#notice img {
207
    margin-right: 20px;
208
}
209
 
210
#actions {
211
    float: right;
212
    width: 140px;
213
}
214
 
215
#actions .button {
216
    display: block;
217
    padding: 0;
218
    height: 36px;
219
    background: url(bg-button.png) no-repeat top left;
220
}
221
 
222
#actions .button a {
223
    display: block;
224
    padding: 0;
225
}
226
 
227
#actions .button a:link,
228
#actions .button a:visited,
229
#actions .button a:hover,
230
#actions .button a:active {
231
    color: #696;
232
    text-decoration: none;
233
}
234
 
235
#actions .button a span {
236
    display: block;
237
    padding: 6px 10px;
238
    color: #666;
239
    text-shadow: 1px 1px 1px #fff;
240
    font-size: 10pt;
241
    font-weight: bold;
242
}
243
 
244
#middle {
245
    background: #eef url(bg-middle.png) repeat-x top left;
246
    margin: 20px 0;
247
    padding: 1px 10px;
248
}
249
 
250
#middle h3 {
251
    margin: 0 0 10px;
252
    color: #033;
253
}
254
 
255
#middle p {
256
    font-size: 10pt;
257
}
258
 
259
#middle a:link,
260
#middle a:visited,
261
#middle a:hover,
262
#middle a:active {
263
    color: #366;
264
    font-weight: bold;
265
}
266
 
267
#middle .col25 .container {
268
    padding: 0 0 1px;
269
}
270
 
271
#developers {
272
    float: left;
273
    width: 40%;
274
}
275
 
276
#security {
277
    float: right;
278
    width: 50%;
279
}
280
 
281
#lower {
282
    padding: 0;
283
}
284
 
285
#lower a:link,
286
#lower a:visited,
287
#lower a:hover,
288
#lower a:active {
289
    color: #600;
290
}
291
 
292
#lower strong a:link,
293
#lower strong a:visited,
294
#lower strong a:hover,
295
#lower strong a:active {
296
    color: #c00;
297
}
298
 
299
#lower h3 {
300
    color: #963;
301
    font-size: 14pt;
302
}
303
 
304
#lower h4 {
305
    font-size: 12pt;
306
}
307
 
308
#lower ul {
309
    padding: 0;
310
    margin: 0.5em 0;
311
}
312
 
313
#lower p,
314
#lower li {
315
    font-size: 9pt;
316
    color: #753;
317
    margin: 0 0 0.1em;
318
}
319
 
320
#lower li {
321
    padding: 3px 5px;
322
}
323
 
324
#lower li strong {
325
    color: #a53;
326
}
327
 
328
#lower li#list-announce {
329
    border: 1px solid #f90;
330
    background-color: #ffe8c8;
331
}
332
 
333
#lower p {
334
    font-size: 10.5pt;
335
}
336
 
337
#low-manage,
338
#low-docs,
339
#low-help {
340
    float: left;
341
    width: 32%;
342
}
343
 
344
#low-docs {
345
    margin: 0 0 0 2.2%;
346
}
347
 
348
#low-help {
349
    float: right;
350
}
351
 
352
#low-manage div,
353
#low-docs div,
354
#low-help div {
355
    min-height: 280px;
356
    border: 3px solid #ffdc75;
357
    background-color: #fff1c8;
358
    padding: 10px;
359
}
360
 
361
#footer {
362
    padding: 0;
363
    margin: 20px 0;
364
    color: #999;
365
    background-color: #eee;
366
}
367
 
368
#footer h4 {
369
    margin: 0 0 10px;
370
    font-size: 10pt;
371
}
372
 
373
#footer p {
374
    margin: 0 0 10px;
375
    font-size: 10pt;
376
}
377
 
378
#footer ul {
379
    margin: 6px 0 1px;
380
    padding: 0;
381
}
382
 
383
#footer li {
384
    margin: 0;
385
    font-size: 9pt;
386
}
387
 
388
#footer a:link,
389
#footer a:visited,
390
#footer a:hover,
391
#footer a:active {
392
    color: #666;
393
}
394
 
395
.copyright {
396
    font-size: 10pt;
397
    color: #666;
398
}