aboutsummaryrefslogtreecommitdiff
blob: a846ed34de3f077e8773c42987635191cdb82645 (plain)
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/* -------------------------------------------------------------- /*
	$Print
/* -------------------------------------------------------------- */

/* stylelint-disable selector-max-compound-selectors */

/* Lots still TODO here! */

/* General markup styles */
* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
}

a:link {
	text-decoration: none;
	color: #000000;
}

a:visited {
	text-decoration: none;
	color: #000000;
}

a:active {
	text-decoration: none;
	color: #000000;
}

img,
.noprint,
.navbar,
.box1,
.divider,
.signature {
	display: none;
}

/* Display smilies (Bug #47265) */
.content img {
	display: inline;
}

/* Container for the main body */
.wrap {
	margin: 0 30px;
}

p {
	font-size: 85%;
}

.copyright {
	font-size: 75%;
}

.page-number {
	font-size: 75%;
	text-align: right;
	float: right;
	width: auto;
}

h1,
h2,
h3,
h1 a,
h2 a,
h3 a {
	font-family: "Trebuchet MS", georgia, Verdana, sans-serif;
	font-weight: bold;
	text-decoration: none;
	background: none;
	color: #000000;
}

h1 {
	font-size: 26px;
}

h2 {
	font-size: 21px;
	margin-top: 20px;
}

h3 {
	font-size: 18px;
	margin-top: 20px;
}

.content {
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 18px;
	overflow: hidden;
	margin-bottom: 14px;
}

.postbody .content {
	font-size: 14px;
}

/* CSS2 Print tip from: http://www.alistapart.com/articles/goingtoprint/ */
.postbody a:link,
.postbody a:visited,
.postbody a:hover,
.postbody a:active {
	font-size: 100%;
	background: none;
	color: #666666;
	padding: 2px 4px;
}

html > body .postbody a:link:after,
html > body .postbody a:visited:after {
	font-size: 90%;
	text-decoration: none;
	content: " (" attr(href) ") ";
}

hr {
	background-color: #999999;
	border-width: 0;
	height: 1px;
}

.author {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
}

.date {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
	text-align: right;
	position: relative;
	float: right;
}

/* Don't want to print url for names or titles in content area */
.postbody .author a:link,
.postbody .author a:visited,
html > body .postbody .author a:link:after,
html > body .postbody .author a:visited:after,
.postquote .quote-by a:link,
.postquote .quote-by a:visited,
html > body .postquote .quote-by a:link:after,
html > body .postquote .quote-by a:visited:after,
html > body .postbody h1 a:link:after,
html > body .postbody h2 a:link:after,
.post-buttons a:after {
	text-decoration: none;
	content: "" !important;
}

/* Poster profile */
.postprofile {
	display: none;
}

.grip-show {
	display: none;
}

/* Quote */
.postquote,
blockquote {
	font-size: 85%;
	line-height: 18px;
	border: 1px #999999 solid;
	position: relative;
	margin: 12px 154px 12px 34px;
	padding: 6px;
}

.postquote img {
	display: none;
}

.postquote span {
	display: block;
}

.postquote span .postquote {
	font-size: 100%;
}

.quote-by,
blockquote cite {
	font-weight: bold;
	color: #000000;
	display: block;
}

/* List */
ol,
ul {
	margin-left: 20px;
}

/* Misc page elements */
.spacer {
	clear: both;
}

code { display: block; }

/* Accessibility tweaks: Mozilla.org */
.skip_link {
	display: none;
}

.codebox p {
	display: none;
}

/* stylelint-disable declaration-property-unit-whitelist */
.emoji {
	width: 1em;
	min-width: 18px;
	height: 1em;
	min-height: 18px;
}
/* stylelint-enable declaration-property-unit-whitelist */

/* stylelint-enable selector-max-compound-selectors */