blob: 6afed32003341900f0c128ddb5c973345e91d9d6 (
plain) (
blame)
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
|
/*
* common.css
* This file contains CSS settings common to Wikistandard, Nostalgia and CologneBlue
*/
/* images */
div.floatright { float: right; margin: 0 0 1em 1em; }
div.floatright p { font-style: italic; }
div.floatleft { float: left; margin: 0.3em 0.5em 0.5em 0; }
div.floatleft p { font-style: italic; }
/* Print-specific things to hide */
.urlexpansion, .printfooter {
display: none;
}
/* table standards */
table.rimage {
float:right;
width:1pt;
margin-left:1em;
margin-bottom:1em;
text-align:center;
font-size:smaller;
}
/* thumbnails */
div.thumb {
margin: 10px;
text-align: center;
width: auto;
}
div.thumb div {
border: 1px solid #8888aa;
background-color: #f7f8ff;
padding: 2px;
font-size: 94%;
}
div.thumb div * {
border: none;
background: none;
}
div.thumb img {
border:1px solid #8888AA;
margin-bottom:3px;
background:#FFFFFF;
}
div.thumbcaption,
div.thumbcaption * {
border: none !important;
background: none !important;
}
div.thumbcaption {
padding: 0.2em 0 0.2em 0 !important;
text-align: left !important;
}
div.tright {
float: right;
margin-left:0.5em;
}
div.tleft {
float: left;
margin-right:0.5em;
}
table.diff {
background:white;
}
td.diff-otitle {
background:#cccccc;
}
td.diff-ntitle {
background:#cccccc;
}
td.diff-addedline {
background:#ccffcc;
}
td.diff-deletedline {
background:#ffffaa;
}
td.diff-context {
background:#eeeeee;
}
img { border: none; }
/* automatically generated edit summaries */
.autocomment { color: gray; }
#toc {
border: 1px solid #8888aa;
background-color: #f7f8ff;
padding: 5px;
font-size: 95%;
}
|