Andrew Lewman commited on 2009-06-15 21:51:45
Zeige 1 geänderte Dateien mit 89 Einfügungen und 7 Löschungen.
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
body { |
2 |
- background-color: #FFFFFF; |
|
2 |
+ background-color: white; |
|
3 | 3 |
margin-top: 0px; |
4 | 4 |
font-family: Arial, Helvetica, sans-serif; |
5 | 5 |
font-size: 1em; |
... | ... |
@@ -69,7 +69,7 @@ table.table-banner { |
69 | 69 |
|
70 | 70 |
div.bottom { |
71 | 71 |
font-size: 0.8em; |
72 |
- margin-top: 2cm; |
|
72 |
+ margin-top: 0.5cm; |
|
73 | 73 |
margin-left: 1em; |
74 | 74 |
margin-right: 1em; |
75 | 75 |
text-align: right; |
... | ... |
@@ -78,15 +78,28 @@ div.bottom { |
78 | 78 |
/* the sidebar */ |
79 | 79 |
|
80 | 80 |
div.sidebar { |
81 |
+ -moz-border-radius: 5px; |
|
82 |
+ -webkit-border-radius: 5px; |
|
83 |
+ background-color: #e5e5e5; |
|
81 | 84 |
float: right; |
82 |
- padding-top: 10px; |
|
83 |
- padding-right: 10px; |
|
84 |
- padding-bottom: 15px; |
|
85 |
- padding-left: 10px; |
|
86 |
- width: 260px; |
|
85 |
+ margin: 0 0 10px 10px; |
|
86 |
+ /* border: 2px solid #666; */ |
|
87 |
+ padding: 10px; |
|
88 |
+ width: 275px; |
|
87 | 89 |
text-align: center; |
88 | 90 |
} |
89 | 91 |
|
92 |
+div.sidebar-left { |
|
93 |
+ -moz-border-radius: 5px; |
|
94 |
+ -webkit-border-radius: 5px; |
|
95 |
+ background-color: #e5e5e5; |
|
96 |
+ float: right; |
|
97 |
+ margin: 0 0 5px 5px; |
|
98 |
+ /* border: 2px solid #666; */ |
|
99 |
+ padding: 5px; |
|
100 |
+ width: 275px; |
|
101 |
+ text-align: right; |
|
102 |
+} |
|
90 | 103 |
|
91 | 104 |
/* The main column (left text) */ |
92 | 105 |
|
... | ... |
@@ -240,6 +253,8 @@ td.banner-right { |
240 | 253 |
} |
241 | 254 |
|
242 | 255 |
.donatebutton a { |
256 |
+ -moz-border-radius: 5px; |
|
257 |
+ -webkit-border-radius: 5px; |
|
243 | 258 |
margin: 10px 0 0 0; |
244 | 259 |
font-weight: bold; |
245 | 260 |
display: block; |
... | ... |
@@ -260,6 +275,30 @@ td.banner-right { |
260 | 275 |
color: orange; |
261 | 276 |
} |
262 | 277 |
|
278 |
+.downloadbutton { |
|
279 |
+ width: auto; |
|
280 |
+ text-align: center; |
|
281 |
+} |
|
282 |
+ |
|
283 |
+.downloadbutton a { |
|
284 |
+ -moz-border-radius: 5px; |
|
285 |
+ -webkit-border-radius: 5px; |
|
286 |
+ margin: 10px 0 0 0; |
|
287 |
+ font-weight: bold; |
|
288 |
+ display: block; |
|
289 |
+ padding: 6px; |
|
290 |
+ background-color: orange; |
|
291 |
+ color: #FFFFFF; |
|
292 |
+} |
|
293 |
+ |
|
294 |
+.downloadbutton a:hover { |
|
295 |
+ color: green; |
|
296 |
+} |
|
297 |
+ |
|
298 |
+.donatebutton a:active { |
|
299 |
+ color: green; |
|
300 |
+} |
|
301 |
+ |
|
263 | 302 |
/* these styles are for the menu on the gui contest pages */ |
264 | 303 |
|
265 | 304 |
.guileft { |
... | ... |
@@ -369,3 +407,46 @@ dt { |
369 | 407 |
font-style: italic; |
370 | 408 |
} |
371 | 409 |
|
410 |
+.nb { |
|
411 |
+ -moz-border-radius: 5px; |
|
412 |
+ -webkit-border-radius: 5px; |
|
413 |
+ background-color:#EEEEFF; |
|
414 |
+ border:1px solid #000000; |
|
415 |
+ color:black; |
|
416 |
+ font-size:8pt; |
|
417 |
+ font-weight:bold; |
|
418 |
+ margin:10px 0; |
|
419 |
+ padding:15px 20px; |
|
420 |
+ text-align:justify; |
|
421 |
+} |
|
422 |
+ |
|
423 |
+.warning { |
|
424 |
+ -moz-border-radius: 5px; |
|
425 |
+ -webkit-border-radius: 5px; |
|
426 |
+ background-color:#FFFFFF; |
|
427 |
+ background-image:url(/images/distros/warning.png); |
|
428 |
+ background-position:15px center; |
|
429 |
+ background-repeat:no-repeat; |
|
430 |
+ border:2px solid #FF0000; |
|
431 |
+ color:#1A1A1A; |
|
432 |
+ font-size:10pt; |
|
433 |
+ font-weight:bold; |
|
434 |
+ margin:10px 0; |
|
435 |
+ padding:15px 20px 15px 67px; |
|
436 |
+ text-align:justify; |
|
437 |
+} |
|
438 |
+ |
|
439 |
+hr { |
|
440 |
+ background-color:#002200; |
|
441 |
+ color:#666666; |
|
442 |
+ font-size:1px; |
|
443 |
+ height:1px; |
|
444 |
+ line-height:0; |
|
445 |
+ margin:15px 0 5px; |
|
446 |
+} |
|
447 |
+ |
|
448 |
+.underline { |
|
449 |
+ border-bottom:1px solid #000022; |
|
450 |
+ margin:10px 0 20px; |
|
451 |
+ padding:5px 0; |
|
452 |
+} |
|
372 | 453 |