blob: 712e4fe78ae0cd017626eeea2a1edb672acf8b10 (
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
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
|
/*
* common.css
* This file contains CSS settings common to Wikistandard, Nostalgia and CologneBlue
*/
#footer { clear: both }
/* 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;
}
/* Page history styling */
/* the auto-generated edit comments */
.autocomment { color: gray; }
#pagehistory span.user {
margin-left: 1.4em;
margin-right: 0.4em;
}
#pagehistory span.minor { font-weight: bold; }
#pagehistory li { border: 1px solid White; }
#pagehistory li.selected {
background-color:#f9f9f9;
border:1px dashed #aaaaaa;
}
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; }
img.tex { vertical-align: middle; }
#toc {
border: 1px solid #8888aa;
background-color: #f7f8ff;
padding: 5px;
font-size: 95%;
}
.error {
color: red;
font-size: larger;
}
/* preference page with js-genrated toc */
#preftoc {
float: left;
margin: 1em 1em 1em 1em;
width: 13em;
}
#preftoc li { border: 1px solid White; }
#preftoc li.selected {
background-color:#f9f9f9;
border:1px dashed #aaaaaa;
}
#preftoc a,
#preftoc a:active {
display: block;
color: #005189;
}
#prefcontrol {
clear: left;
float: left;
margin-top: 1em;
}
div.prefsectiontip {
font-size: 94%;
margin-top: 1em;
}
fieldset.prefsection { margin-top: 1em }
fieldset.operaprefsection { margin-left: 15em }
|