]> gitweb @ CieloNegro.org - Rakka.git/blob - defaultPages/StyleSheet/Default.xml
9ecbbce64504243d72495e1e4c2072cd27d29188
[Rakka.git] / defaultPages / StyleSheet / Default.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <page xmlns="http://cielonegro.org/schema/Rakka/Page/1.0"
3       type="text/css"
4       isBoring="yes"
5       isTheme="yes">
6   <textData>
7 /* global configuration *******************************************************/
8 * {
9     padding: 0;
10     margin: 0;
11 }
12
13 /* layout *********************************************************************/
14 .center {
15     position: absolute;
16     
17     overflow: auto;
18
19     top: 20px;
20     right: 15em;
21     left: 15em;
22     bottom: 20px;
23 }
24
25 .left {
26     top: 0em;
27     width: 15em;
28     left: 0;
29     bottom: 0;
30 }
31
32 .right {
33     top: 0em;
34     width: 15em;
35     right: 0;
36     bottom: 0;
37 }
38
39 .header {
40     position: absolute;
41     height: 20px;
42     left: 15em;
43     right: 15em;
44     top: 0;
45 }
46
47 .footer {
48     position: absolute;
49     height: 20px;
50     left: 15em;
51     right: 15em;
52     bottom: 0;
53 }
54
55 .sideBar {
56     position: absolute;
57     overflow: auto;
58 }
59
60 /* spacing ********************************************************************/
61 input[type="button"] {
62     padding: 0px;
63 }
64
65 .title {
66     padding: 5px 20px;
67 }
68
69 .title p {
70     margin: 0;
71 }
72
73 .body {
74     padding: 25px 30px;
75 }
76
77 .body p {
78     margin: 0 0 0.8em 0;
79 }
80
81 .sideBar p {
82     margin: 0.2em 0;
83 }
84
85 .body h1, .body h2, .body h3, .body h4, .body h5, .body h6 {
86     margin: 5px 0px;
87 }
88
89 .body ul, .body ol {
90     list-style-position: inside;
91     margin: 0 0 0.8em 0;
92 }
93 .body ul ul, .body ul ol, .body ol ul, .body ol ol {
94     margin: 0;
95 }
96
97 .body li {
98     margin: 3px 5px;
99 }
100 .body li li {
101     margin-left: 20px;
102 }
103
104 .body dl {
105     margin: 1em 2em;
106 }
107 .body dt {
108     font-weight: bold;
109 }
110 .body dd {
111     margin-left: 3em;
112     margin-top: 0.1em;
113 }
114 .body dd + dt {
115     margin-top: 0.9em;
116 }
117
118 .sideBar h1 {
119     margin-bottom: 5px;
120     padding: 0px 5px;
121 }
122
123 .sideBar .content {
124     padding: 20px;
125 }
126
127 .sideBar p {
128     margin-left: 5px;
129 }
130
131 .sideBar .outline li {
132     margin-left: 1em;
133     padding: 0;
134 }
135
136 .sideBar li {
137     padding: 3px;
138 }
139
140 .sideBar ul, .sideBar ol {
141     list-style-type: none;
142     margin-top: 0.4em;
143     margin-bottom: 0.4em;
144 }
145
146 .sideBar li + li {
147     margin-top: 0.3em;
148 }
149
150 .sideBar * + h1 {
151     margin-top: 1.2em;
152 }
153
154 .sideBar .date {
155     padding: 0.2em 0 0 0;
156 }
157
158 table.pageEditor {
159     width: 100%;
160 }
161 .pageEditor td, .pageEditor th {
162     padding: 3px;
163 }
164 .pageEditor th {
165     width: 6em;
166 }
167 .pageEditor ul {
168     list-style-type: none;
169     margin: 0;
170 }
171 .pageEditor li {
172     margin: 0;
173     padding: 3px;
174 }
175 .pageEditor input[type="radio"] {
176     margin-right: 10px;
177 }
178 .pageEditor input[type="text"], 
179 .pageEditor input[type="file"],
180 .pageEditor textarea {
181     width: 97%;
182     padding: 3px;
183 }
184 .pageEditor textarea.summary {
185     height: 5em;
186 }
187 .pageEditor textarea.source {
188     height: 30em;
189 }
190 .pageEditor input[type="button"] {
191     margin: 0 2px;
192 }
193
194 /* color and text *************************************************************/
195 * {
196     font-family: sans-serif;
197 }
198
199 body {
200     background-color: white;
201     color: black;
202 }
203
204 .body {
205     line-height: 1.3;
206 }
207
208 h1, h2, h3, h4, h5, h6 {
209     font-weight: normal;
210 }
211
212 hr {
213     border-color: #bbbbbb;
214     border-width: 1px;
215     border-style: dashed;
216 }
217
218 th, td {
219     border-color: #dddddd;
220     border-width: 1px;
221     border-style: solid;
222 }
223 th {
224     background-color: #eeeeee;
225     font-weight: bold;
226 }
227 td {
228     background-color: #fafafa;
229 }
230
231 p {
232     text-indent: 1em;
233 }
234
235 .title {
236     background-color: #fafafa;
237
238     border-color: #cccccc;
239     border-width: 0 0 1px 0;
240     border-style: solid;
241
242     font-size: 1.2em;
243 }
244
245 .body h1 {
246     font-size: 200%;
247 }
248 .body h2 {
249     font-size: 150%;
250 }
251 .body h3 {
252     font-size: 130%;
253 }
254 .body h4 {
255     font-size: 110%;
256 }
257 .body h5 {
258     font-size: 90%;
259 }
260 .body h1, .body h2, .body h3, .body h4, .body h5 {
261     background-color: #fafafa;
262     
263     border-color: #dddddd;
264     border-width: 1px;
265     border-style: solid;
266
267     padding: 0 10px;
268 }
269
270 a {
271     color: #008800;
272     text-decoration: none;
273 }
274 a:hover {
275     text-decoration: underline;
276 }
277
278 input[type="button"] {
279     background-color: #f5f5f5;
280     color: #000055;
281
282     border-color: #dddddd;
283     border-width: 2px;
284     border-style: solid;
285
286     border-radius: 10px;
287     -moz-border-radius: 10px;
288 }
289 input[type="button"]:active {
290     background-color: #999999;
291 }
292
293 .header, .footer, .sideBar {
294     background-color: #eeeeee;
295 }
296
297 .sideBar h1 {
298     font-size: 120%;
299 }
300 .sideBar h1, .sideBar h2, .sideBar h3, .sideBar h4, .sideBar h5 {
301     font-weight: normal;
302
303     color: #555555;
304     background-color: #fafafa;
305
306     border-color: #dddddd white white #dddddd;
307     border-width: 1px;
308     border-style: solid;
309 }
310
311 .sideBar .date {
312     font-size: 70%;
313     white-space: nowrap;
314     color: #666666;
315 }
316
317 .sideBar p {
318     text-indent: 0;
319 }
320
321 .sideBar .recentUpdates p,
322 .sideBar .trackbacks p {
323     font-size: 90%;
324 }
325
326 .sideBar .outline li {
327     list-style-type: disc;
328     background-color: inherit;
329 }
330 .sideBar .outline li li {
331     list-style-type: circle;
332 }
333 .sideBar .outline li li li {
334     list-style-type: square;
335 }
336 .sideBar .outline li li li li {
337     list-style-type: disc;
338 }
339 .sideBar .outline li li li li li {
340     list-style-type: circle;
341 }
342
343 .sideBar li {
344     padding: 3px 5px;
345     background-color: #f5f5f5;
346
347     border-radius: 10px;
348     -moz-border-radius: 10px;
349 }
350
351 .sideBar .recentUpdates li, .sideBar .trackbacks li {
352     background-color: #e0e0e0;
353 }
354
355 .pageEditor input[type="text"],
356 .pageEditor input[type="file"],
357 .pageEditor textarea {
358     border-color: #dddddd #fafafa #fafafa #dddddd;
359     border-width: 2px;
360     border-style: solid;
361
362     background-color: white;
363 }
364
365 /* float **********************************************************************/
366 h1, h2, h3, h4, h5, h6 {
367     clear: both;
368 }
369
370 /* image **********************************************************************/
371 img {
372     border-width: 0;
373 }
374
375 .inlineImage {
376     margin-top: 5px;
377     margin-bottom: 5px;
378 }
379
380 .leftFloat {
381     float: left;
382     margin-right: 25px;
383 }
384
385 .rightFloat {
386     float: right;
387     margin-left: 25px;
388 }
389
390 .imageFrame {
391     background-color: #eeeeee;
392     padding: 5px;
393
394     border-color: #cccccc;
395     border-width: 1px;
396     border-style: solid;
397
398     margin-top: 5px;
399     margin-bottom: 10px;
400 }
401
402 .imageFrame p {
403     margin: 0;
404 }
405
406 .imageData {
407     text-align: center;
408 }
409
410 .imageCaption {
411     margin-top: 3px;
412 }
413
414 /* error **********************************************************************/
415 .error {
416     color: red;
417     background-color: white;
418
419     font-weight: bold;
420     
421     border-color: #880000;
422     border-width: 3px;
423     border-style: double;
424
425     padding: 10px;
426 }
427
428 .error p, .error pre {
429     margin: 0;
430 }
431
432 .error:before {
433     content: "Error: "
434 }
435
436 /* waiting message ************************************************************/
437 .waitingMessageBoard {
438     position: fixed;
439     left: 0;
440     top: 0;
441     width: 100%;
442     height: 100%;
443
444     background-color: white;
445     color: black;
446     opacity: 0.7;
447
448     z-index: 1;
449 }
450
451 .waitingMessageBoard p {
452     text-align: center;
453     vertical-align: middle;
454     font-size: 200%;
455
456     position: fixed;
457     bottom: 1em;
458     right: 1em;
459 }
460
461 /* redirection message ********************************************************/
462 .redirection {
463     margin: 5px;
464     padding: 2px;
465
466     font-size: 80%;
467
468     background-color: #fafafa;
469     color: #888888;
470
471     border-color: #eeeeee;
472     border-width: 1px;
473     border-style: dotted
474 }
475
476 .redirection input[type="button"] {
477     color: inherit;
478     background-color: #fcfcfc;
479
480     border-width: 1px;
481
482     border-radius: 5px;
483     -moz-border-radius: 5px;
484
485     margin-left: 0.8em;
486 }
487
488 .redirection input[type="button"]:active {
489     background-color: #eeeeee;
490 }
491
492 /* preview ********************************************************************/
493 .preview {
494     background-color: #eeeeee;
495
496     margin: 0 0 20px 0;
497     padding: 10px;
498
499     border-style: solid;
500     border-width: 1px;
501     border-color: #bbbbbb;
502 }
503 </textData>
504 </page>