author | Dan |
Sun, 01 Jul 2007 14:08:39 -0400 | |
changeset 32 | 4d87aad3c4c0 |
parent 1 | fe660c52c48f |
child 39 | c83ff194977a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
2 |
* Shared stuff that all Enano themes (should) use |
|
3 |
*/ |
|
4 |
||
5 |
/* Information, warning, question, error, and wait boxes */ |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
6 |
div.error-box { background-image: url(../../../images/error.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #FFF4F4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 0; min-height: 25px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
7 |
div.info-box { background-image: url(../../../images/info.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #F4F4FF; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 0; min-height: 25px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
8 |
div.warning-box { background-image: url(../../../images/warning.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #FFFFF4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 0; min-height: 25px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
9 |
div.question-box { background-image: url(../../../images/question.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #F4FFF4; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 0; min-height: 25px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
10 |
div.wait-box { background-image: url(../../../images/wait.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #FFF4FF; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 0; min-height: 25px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
11 |
|
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
12 |
div.error-box-mini { background-image: url(../../../images/mini-error.png); background-position: 5px 5px; background-repeat: no-repeat; background-color: #FFF4F4; border: 1px solid #406080; padding: 4px 4px 4px 26px; margin: 1em 0; min-height: 17px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
13 |
div.info-box-mini { background-image: url(../../../images/mini-info.png); background-position: 5px 5px; background-repeat: no-repeat; background-color: #F4F4FF; border: 1px solid #406080; padding: 4px 4px 4px 26px; margin: 1em 0; min-height: 17px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
14 |
div.warning-box-mini { background-image: url(../../../images/mini-warning.png); background-position: 5px 5px; background-repeat: no-repeat; background-color: #FFFFF4; border: 1px solid #406080; padding: 4px 4px 4px 26px; margin: 1em 0; min-height: 17px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
15 |
div.question-box-mini { background-image: url(../../../images/mini-question.png); background-position: 5px 5px; background-repeat: no-repeat; background-color: #F4FFF4; border: 1px solid #406080; padding: 4px 4px 4px 26px; margin: 1em 0; min-height: 17px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
16 |
div.wait-box-mini { background-image: url(../../../images/mini-wait.png); background-position: 5px 5px; background-repeat: no-repeat; background-color: #FFF4FF; border: 1px solid #406080; padding: 4px 4px 4px 26px; margin: 1em 0; min-height: 17px; } |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
17 |
|
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
18 |
/* Similar to the Mediawiki-ish alert box (usermessage) */ |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
19 |
|
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
20 |
div.alert { |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
21 |
background-color: #F09090; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
22 |
border: 1px solid #D03030; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
23 |
color: #300000; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
24 |
padding: 3px; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
25 |
position: relative; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
26 |
top: -3px; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
1
diff
changeset
|
27 |
} |
1 | 28 |
|
29 |
/* toolbar */ |
|
30 |
div.toolbar { |
|
31 |
border-bottom: 1px solid #909090; |
|
32 |
background-color: #D0D0D0; |
|
33 |
padding: 2px 0; |
|
34 |
height: 22px; |
|
35 |
font-family: arial, sans-serif; |
|
36 |
font-size: 8pt; |
|
37 |
} |
|
38 |
div.toolbar ul { |
|
39 |
margin: 0; |
|
40 |
padding: 0; |
|
41 |
} |
|
42 |
div.toolbar ul li { |
|
43 |
list-style: none; |
|
44 |
margin: 0; |
|
45 |
float: left; |
|
46 |
} |
|
47 |
div.toolbar a img { |
|
48 |
opacity: 0.6; |
|
49 |
/*filter: alpha(opacity=60);*/ |
|
50 |
} |
|
51 |
div.toolbar a:hover img { |
|
52 |
opacity: 1; |
|
53 |
/*filter: alpha(opacity=100);*/ |
|
54 |
} |
|
55 |
div.toolbar a { |
|
56 |
display: block; |
|
57 |
padding: 2px; |
|
58 |
border: 1px solid transparent; |
|
59 |
cursor: default; |
|
60 |
width: auto; |
|
61 |
color: #000000; |
|
62 |
margin: 0 2px; |
|
63 |
max-height: 16px; |
|
64 |
text-decoration: none; |
|
65 |
} |
|
66 |
div.toolbar a:hover { |
|
67 |
border: 1px solid #202090; |
|
68 |
background-color: #ceceed; |
|
69 |
color: #000000; |
|
70 |
text-decoration: none; |
|
71 |
} |
|
72 |
div.toolbar a:active { |
|
73 |
border: 1px solid #A0A0A0; |
|
74 |
background-color: #E0E0E0; |
|
75 |
} |
|
76 |
div.toolbar img { |
|
77 |
margin: 0; |
|
78 |
padding: 0; |
|
79 |
display: inline; |
|
80 |
border-width: 0px; |
|
81 |
} |
|
82 |
div.toolbar a span { |
|
83 |
position: relative; |
|
84 |
top: -4px; |
|
85 |
} |
|
86 |
div.toolbar li span { |
|
87 |
padding-left: 2px; |
|
88 |
padding-right: 5px; |
|
89 |
} |
|
90 |
||
91 |
/* vertical toolbar */ |
|
92 |
div.toolbar_vert { |
|
93 |
border: 1px solid #909090; |
|
94 |
background-color: #D0D0D0; |
|
95 |
padding: 2px 0; |
|
96 |
} |
|
97 |
div.toolbar_vert ul { |
|
98 |
margin: 0; |
|
99 |
padding: 0; |
|
100 |
} |
|
101 |
div.toolbar_vert ul li { |
|
102 |
list-style: none; |
|
103 |
margin: 0; |
|
104 |
} |
|
105 |
div.toolbar_vert a img { |
|
106 |
opacity: 0.6; |
|
107 |
/*filter: alpha(opacity=60);*/ |
|
108 |
} |
|
109 |
div.toolbar_vert a:hover img { |
|
110 |
opacity: 1; |
|
111 |
/*filter: alpha(opacity=100);*/ |
|
112 |
} |
|
113 |
div.toolbar_vert a { |
|
114 |
display: block; |
|
115 |
padding: 2px; |
|
116 |
border: 1px solid transparent; |
|
117 |
cursor: default; |
|
118 |
width: auto; |
|
119 |
color: #000000; |
|
120 |
margin: 0 2px; |
|
121 |
max-height: 16px; |
|
122 |
text-decoration: none; |
|
123 |
} |
|
124 |
div.toolbar_vert a:hover { |
|
125 |
border: 1px solid #202090; |
|
126 |
background-color: #ceceed; |
|
127 |
color: #000000; |
|
128 |
text-decoration: none; |
|
129 |
} |
|
130 |
div.toolbar_vert a:active { |
|
131 |
border: 1px solid #A0A0A0; |
|
132 |
background-color: #E0E0E0; |
|
133 |
} |
|
134 |
div.toolbar_vert img { |
|
135 |
margin: 0; |
|
136 |
padding: 0; |
|
137 |
display: inline; |
|
138 |
border-width: 0px; |
|
139 |
} |
|
140 |
div.toolbar_vert a span { |
|
141 |
position: relative; |
|
142 |
top: -4px; |
|
143 |
} |
|
144 |
div.toolbar_vert li span { |
|
145 |
padding-left: 2px; |
|
146 |
padding-right: 5px; |
|
147 |
} |
|
148 |
||
149 |
/* Tables */ |
|
150 |
.tblholder { margin: 10px 0 0 0; padding: 0; border: 1px solid #AAAAAA; background-color: #E8E8E8; } |
|
151 |
||
152 |
/* The beautiful tables inside what may not obviously be mdg-comment divs */ |
|
153 |
div.tblholder td.row1 { padding: 4px; background-color: #E0E0E0; } |
|
154 |
div.tblholder td.row2 { padding: 4px; background-color: #F0F0F0; } |
|
155 |
div.tblholder td.row3 { padding: 4px; background-color: #E8E8E8; } |
|
156 |
div.tblholder th { padding: 4px; background-color: #7080A0; font-weight: bold; text-align: center; color: #FFFFFF; } |
|
157 |
div.tblholder th.subhead { padding: 4px; background-color: #90A0B0; font-weight: bold; text-align: center; color: #FFFFFF; } |
|
158 |
div.tblholder table { background-color: #FFFFFF; width: 100%; } |
|
159 |
||
160 |
/* Well, not Midget and not comments (usually), but that's what the class is called ;-). Basically an informational window or used as a wrapper for tables. */ |
|
161 |
.mdg-comment, .mdg-infobox { margin-left: 1em; padding: 7px; border: 1px solid #AAAAAA; background-color: #E8E8E8; } |
|
162 |
||
163 |
/* JWS window theming */ |
|
164 |
div.jswindow { border: 2px solid #7090B0; border-top: 5px solid #7090B0; padding: 0px; font-family: Trebuchet MS, tahoma, verdana, arial, sans-serif; font-size: 9pt; display: none; position: absolute; background-color: #FFFFFF; } |
|
165 |
div.titlebar { background-color: #7090B0; color: #FFFFFF; font-family: Trebuchet MS, tahoma, verdana, arial, sans-serif; font-size: 9pt; padding-bottom: 4px; cursor: default; } |
|
166 |
div.titlebar div.closebtn { width: 16px; height: 16px; border: 1px solid #B0D0F0; background-color: #90B0D0; display: block; } |
|
167 |
div.titlebar div.closebtn:hover { width: 16px; height: 16px; border: 1px solid #FFFFFF; background-color: #B0D0F0; display: block; } |
|
168 |
div.titlebar table, div.titlebar td { margin: 0; padding: 0; } |
|
169 |
div.jswindow div.content { padding: 10px; margin: 0; background-color: #FFFFFF; } |
|
170 |
||
171 |
/* Search results */ |
|
172 |
div.search-result h3 { font-size: 14pt; margin: 10px 0 0 0; } |
|
173 |
div.search-result h3 a { color: blue !important; font-weight: normal; padding-bottom: 0; } |
|
174 |
div.search-result p { margin: 10px 0 0 0 !important; font-family: arial, helvetica, sans-serif; font-size: 10pt; } |
|
175 |
div.search-result span.search-result-info { color: green; } |
|
176 |
div.search-result span.search-term, div.search-result span.title-search-term { background-color: #FFFFC0; font-weight: bold; } |
|
177 |
||
178 |
/* |
|
179 |
* Search box |
|
180 |
*/ |
|
181 |
||
182 |
input.js-search-box { |
|
183 |
font-size: 13px; |
|
184 |
margin: 0; |
|
185 |
padding: 1px !important; |
|
186 |
background-image: url(../../../images/search-box-normal.gif); |
|
187 |
height: 15px; |
|
188 |
background-repeat: repeat-x; |
|
189 |
border-width: 1px; |
|
190 |
border-style: solid; |
|
191 |
border-color: #6c6c6c; |
|
192 |
color: #C0C0C0; |
|
193 |
} |
|
194 |
||
195 |
input.js-search-box:focus { |
|
196 |
background-image: url(../../../images/search-box-hilite.gif); |
|
197 |
color: #666; |
|
198 |
} |
|
199 |
||
200 |
div.js-search-submit { |
|
201 |
display: block; |
|
202 |
position: absolute; |
|
203 |
width: 24px; |
|
204 |
height: 19px; |
|
205 |
font-size: 1px; |
|
206 |
line-height: 19px; |
|
207 |
clip: rect(0px, 24px, 19px, 0px); |
|
208 |
overflow: hidden; |
|
209 |
margin: 0; |
|
210 |
padding: 0; |
|
211 |
background: transparent url(../../../images/search-btn-normal.png) no-repeat !important; |
|
212 |
background-repeat: no-repeat; |
|
213 |
cursor: pointer; |
|
214 |
} |
|
215 |
||
216 |
div.js-search-submit:hover { |
|
217 |
background-image: url(../../../images/search-btn-hilite.png); |
|
218 |
} |
|
219 |
||
220 |
input[type ^="text"].username, input[type ^="password"].password { |
|
221 |
padding: 2px 2px 2px 27px; |
|
222 |
width: 96px; |
|
223 |
height: 15px; |
|
224 |
border: 0px none #000; |
|
225 |
font-size: 11px; |
|
226 |
} |
|
227 |
input[type ^="text"].username { |
|
228 |
background-image: url(../../../images/login-username.png); |
|
229 |
} |
|
230 |
input[type ^="password"].password { |
|
231 |
background-image: url(../../../images/login-password.png); |
|
232 |
} |
|
233 |
||
234 |
/* |
|
235 |
* jBox menu system |
|
236 |
*/ |
|
237 |
||
238 |
div.menu, div.menu_nojs { |
|
239 |
background-color: #D0D0D0; |
|
240 |
border: 1px solid #A0A0A0; |
|
241 |
font-size: 9pt; |
|
242 |
} |
|
243 |
div.menu a, div.menu div.label { |
|
244 |
padding: 2pt 5px; |
|
245 |
text-decoration: none; |
|
246 |
display: block; |
|
247 |
float: left; |
|
248 |
color: #404040; |
|
249 |
} |
|
250 |
div.menu_nojs a, div.menu_nojs div.label { |
|
251 |
padding: 2pt 5px; |
|
252 |
text-decoration: none; |
|
253 |
display: block; |
|
254 |
color: #404040; |
|
255 |
} |
|
256 |
div.menu div.label, div.menu_nojs div.label { |
|
257 |
color: #101010; |
|
258 |
} |
|
259 |
div.menu span.sep, div.menu_nojs span.sep { |
|
260 |
display: block; |
|
261 |
float: left; |
|
262 |
width: 5px; |
|
263 |
} |
|
264 |
div.menu div.multopts, div.menu_nojs div.multopts { |
|
265 |
line-height: 17pt; |
|
266 |
} |
|
267 |
div.menu div.multopts a, div.menu div.multopts div.label, div.menu_nojs div.multopts a, div.menu_nojs div.multopts div.label { |
|
268 |
float: none; |
|
269 |
display: inline; |
|
270 |
} |
|
271 |
div.menu a:hover, div.menu_nojs a:hover { |
|
272 |
color: #FFFFFF; |
|
273 |
background-color: #808080; |
|
274 |
} |
|
275 |
div.menu input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="text"], div.menu_nojs input[type ^="password"] { |
|
276 |
border-width: 0; |
|
277 |
font-size: 9pt; |
|
278 |
padding: 4px 5px; |
|
279 |
max-width: 70px; |
|
280 |
background-color: #E0E0E0; |
|
281 |
} |
|
282 |
div.menu input[type ^="text"]:hover, div.menu input[type ^="password"]:hover, div.menu_nojs input[type ^="text"]:hover, div.menu_nojs input[type ^="password"]:hover { |
|
283 |
background-color: #E8E8E8; |
|
284 |
} |
|
285 |
div.menu input[type ^="text"]:focus, div.menu input[type ^="password"]:focus, div.menu_nojs input[type ^="text"]:focus, div.menu_nojs input[type ^="password"]:focus { |
|
286 |
background-color: #F0F0F0; |
|
287 |
} |
|
288 |
div.menu input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="button"], div.menu_nojs input[type ^="submit"] { |
|
289 |
border-width: 0; |
|
290 |
font-size: 9pt; |
|
291 |
padding: 3px 5px; |
|
292 |
max-width: 70px; |
|
293 |
} |
|
294 |
div.menu a.current, div.menu a.current:hover, div.menu_nojs a.current, div.menu_nojs a.current:hover { |
|
295 |
color: #FFFFFF; |
|
296 |
background-color: #505050; |
|
297 |
} |
|
298 |
div.menu ul { |
|
299 |
display: none; |
|
300 |
position: absolute; |
|
301 |
padding: 0; |
|
302 |
margin: 0; |
|
303 |
background-color: #D0D0D0; |
|
304 |
border: 1px solid #A0A0A0; |
|
305 |
min-width: 120px; |
|
306 |
} |
|
307 |
div.menu_nojs ul { |
|
308 |
display: block; |
|
309 |
clear: both; |
|
310 |
} |
|
311 |
div.menu ul li, div.menu_nojs ul li { |
|
312 |
list-style: none; |
|
313 |
} |
|
314 |
div.menu ul a, div.menu_nojs ul a { |
|
315 |
float: none; |
|
316 |
margin: 0; |
|
317 |
} |
|
318 |
span.menuclear { |
|
319 |
font-size: 1px; |
|
320 |
height: 0px; |
|
321 |
width: 0px; |
|
322 |
clear: left; |
|
323 |
line-height: 0px; |
|
324 |
display: block; |
|
325 |
} |
|
326 |
||
327 |
/* |
|
328 |
* Docking Boxes code (for the sidebar editor) |
|
329 |
*/ |
|
330 |
||
331 |
/* group container(s) */ |
|
332 |
#sbedit { |
|
333 |
margin: 0; |
|
334 |
padding: 0; |
|
335 |
/* position:relative; /* additional outer containers must also have position:relative */ |
|
336 |
} |
|
337 |
/* keyboard navigation tooltip */ |
|
338 |
.dbx-tooltip { |
|
339 |
display:block; |
|
340 |
position:absolute; |
|
341 |
margin:36px 0 0 125px; |
|
342 |
width:185px; |
|
343 |
border:1px solid #000; |
|
344 |
background:#ffd; |
|
345 |
color:#000; |
|
346 |
font:normal normal normal 0.85em tahoma, arial, sans-serif; |
|
347 |
padding:2px 4px 3px 5px; |
|
348 |
text-align:left; |
|
349 |
} |
|
350 |
* html .dbx-tooltip { width:195px; } |
|
351 |
||
352 |
/* use CSS2 system colors in CSS2 browsers |
|
353 |
but not safari, which doesn't support them */ |
|
354 |
*[class="dbx-tooltip"]:lang(en) { |
|
355 |
border-color:InfoText; |
|
356 |
background:InfoBackground; |
|
357 |
color:InfoText; |
|
358 |
font:small-caption; |
|
359 |
font-weight:normal; |
|
360 |
} |
|
361 |
/* additional clone styles */ |
|
362 |
.dbx-clone { |
|
363 |
opacity: 0.8; |
|
364 |
} |
|
365 |
.dbx-content ul { |
|
366 |
margin: 0; padding: 0; |
|
367 |
list-style: none; |
|
368 |
} |
|
369 |
.dbx-content li a, .dbx-content li a:hover { |
|
370 |
text-decoration: none; color: #666; |
|
371 |
} |
|
372 |
.dbx-content2 { |
|
373 |
margin: 0px 1px 0px 1px; |
|
374 |
} |
|
375 |
||
376 |
/* Progress bars */ |
|
377 |
div.progressbar { |
|
378 |
padding: 2px; |
|
379 |
background-color: #90A0B0; |
|
380 |
width: 308px; |
|
381 |
} |
|
382 |
div.progressbar_inner { |
|
383 |
min-width: 30px; |
|
384 |
color: white; |
|
385 |
background-color: #7080A0; |
|
386 |
padding: 4px; |
|
387 |
} |
|
388 |
/* User notification - courtest of wikipedia.org (not sure if this is included with MediaWiki) */ |
|
389 |
/* user notification thing */ |
|
390 |
||
391 |
.usermessage { |
|
392 |
background-color: #ffce7b; |
|
393 |
border: 1px solid #ffa500; |
|
394 |
color: black; |
|
395 |
margin: 10px 0 1em; |
|
396 |
padding: .5em 1em; |
|
397 |
vertical-align: middle; |
|
398 |
} |
|
399 |
.usermessage a:link, .usermessage a:active, .usermessage a:visited { |
|
400 |
color: #CA7520; |
|
401 |
} |
|
402 |
.usermessage a:hover { |
|
403 |
color: #AA5500 !important; |
|
404 |
} |
|
405 |
div.thumbnail { |
|
406 |
display: table; |
|
407 |
border: 1px solid #AAAAAA; |
|
408 |
background-color: #F0F0F0; |
|
409 |
padding: 4px; |
|
410 |
margin-bottom: 10px; |
|
411 |
} |
|
412 |
div.thumbnail-inner { |
|
413 |
background-image: url(../../../images/thumbnail.png); |
|
414 |
background-position: top right; |
|
415 |
background-repeat: no-repeat; |
|
416 |
} |
|
417 |