author | Dan |
Sun, 10 May 2009 14:47:14 -0400 | |
changeset 962 | ceeecb160aec |
parent 958 | 3dafe0969e5a |
child 965 | 72b37471cce0 |
permissions | -rw-r--r-- |
921 | 1 |
/** |
2 |
* Enanium - Baby Grand |
|
3 |
* Polished black default theme for Enano CMS |
|
4 |
* Copyright (C) 2009 Dan Fuhry |
|
5 |
*/ |
|
6 |
||
7 |
/* Includes */ |
|
8 |
@import url(../css-extra/jbox.css); |
|
9 |
@import url(../css-extra/toolbar.css); |
|
10 |
||
11 |
/* Core definitions - structure */ |
|
12 |
||
13 |
html, body { |
|
14 |
margin: 0; |
|
15 |
padding: 0; |
|
16 |
} |
|
17 |
||
18 |
div { |
|
19 |
margin: 0; |
|
20 |
padding: 0; |
|
21 |
} |
|
22 |
||
23 |
body { |
|
24 |
background-image: url(../images/background.gif); |
|
25 |
background-color: #2a2a29; |
|
26 |
font-family: trebuchet ms, verdana, tahoma, arial, helvetica, sans-serif; |
|
27 |
font-size: 9pt; |
|
28 |
} |
|
29 |
||
30 |
table#body-wrapper { |
|
31 |
width: 100%; |
|
32 |
} |
|
33 |
||
34 |
body.simple table#body-wrapper { |
|
35 |
width: 70%; |
|
36 |
margin: 0 auto; |
|
37 |
} |
|
38 |
||
39 |
td#cell-sbleft { |
|
40 |
background-image: url(../images/transb50.png); |
|
41 |
} |
|
42 |
||
43 |
td#cell-content { |
|
44 |
background-color: #fff; |
|
45 |
padding: 0; |
|
46 |
width: 100%; |
|
47 |
} |
|
48 |
||
49 |
/* Global - links */ |
|
50 |
a { |
|
51 |
text-decoration: none; |
|
52 |
} |
|
53 |
||
54 |
a:link, a:visited { |
|
55 |
color: #356a9e; |
|
56 |
} |
|
57 |
||
58 |
div#content-wrapper a:visited { |
|
59 |
color: #4c84bb; |
|
60 |
} |
|
61 |
||
62 |
a:link:hover { |
|
63 |
color: #6a95c0; |
|
64 |
} |
|
65 |
||
66 |
/* Header */ |
|
67 |
div#header { |
|
68 |
line-height: 122px; |
|
69 |
/* background-image: url(../images/top.gif); */ |
|
70 |
background-repeat: repeat-x; |
|
71 |
color: #a9a9a9; |
|
72 |
padding: 0 1.3em; |
|
73 |
} |
|
74 |
||
75 |
body.simple div#header { |
|
76 |
line-height: 78px; |
|
77 |
width: 75%; |
|
78 |
margin: 100px auto 0 auto; |
|
79 |
} |
|
80 |
||
81 |
div#header h1 { |
|
82 |
margin: 0; |
|
83 |
font-weight: normal; |
|
84 |
} |
|
85 |
||
86 |
div#header h1 a { |
|
87 |
color: white; |
|
88 |
padding-right: 20px; |
|
89 |
} |
|
90 |
||
91 |
div#header h1 a:hover { |
|
92 |
background-image: url(../images/home.gif); |
|
93 |
background-repeat: no-repeat; |
|
94 |
background-position: center right; |
|
95 |
} |
|
96 |
||
97 |
div.logo { |
|
98 |
width: 96px; |
|
99 |
height: 122px; |
|
100 |
background-image: url(../images/logo.png); |
|
101 |
background-position: center center; |
|
102 |
background-repeat: no-repeat; |
|
103 |
float: left; |
|
104 |
margin: 0 7px 0 -13px; |
|
105 |
} |
|
106 |
||
107 |
/* Userlinks */ |
|
108 |
ul.useropts { |
|
109 |
position: absolute; |
|
110 |
margin: 0; |
|
111 |
right: 10px; |
|
112 |
line-height: 19px; |
|
113 |
top: 99px; |
|
114 |
} |
|
115 |
||
116 |
ul.useropts li { |
|
117 |
display: block; |
|
118 |
float: left; |
|
119 |
margin-right: 4px; |
|
120 |
} |
|
121 |
||
122 |
ul.useropts li a { |
|
123 |
color: #a9b2e3; |
|
124 |
display: block; |
|
125 |
padding: 2px 12px; |
|
126 |
background-color: #30475d; |
|
127 |
-moz-border-radius: 6px 6px 0 0; |
|
128 |
border-radius: 6px 6px 0 0; |
|
129 |
} |
|
130 |
||
131 |
ul.useropts li.em a { |
|
132 |
color: #b9d0e3; |
|
133 |
background-color: #405f7c; |
|
134 |
font-weight: bold; |
|
135 |
} |
|
136 |
||
137 |
ul.useropts li:hover { |
|
138 |
position: relative; |
|
139 |
top: -2px; |
|
140 |
} |
|
141 |
||
142 |
ul.useropts li:hover > a { |
|
143 |
padding: 2px 12px 4px 12px; |
|
144 |
} |
|
145 |
||
146 |
ul.useropts li.logout:hover > a { |
|
147 |
color: #e9e9e9; |
|
148 |
background-color: #701010; |
|
149 |
} |
|
150 |
||
151 |
/* Search form */ |
|
152 |
||
153 |
form.searchform { |
|
154 |
position: absolute; |
|
155 |
/* background-color: #292929; */ |
|
156 |
background-image: url(../images/transb50.png); |
|
157 |
top: 0px; |
|
158 |
right: 10px; |
|
159 |
padding: 7px; |
|
160 |
text-align: right; |
|
161 |
} |
|
162 |
||
163 |
/* Sidebars */ |
|
164 |
div.sidebar.left { |
|
165 |
width: 150px; |
|
166 |
} |
|
167 |
||
168 |
div.sidebar.right { |
|
169 |
float: right; |
|
170 |
width: 170px; |
|
171 |
margin: 0 0 0 20px; |
|
172 |
} |
|
173 |
||
174 |
div.sidebar.right div.slider { |
|
175 |
padding: 10px; |
|
176 |
background-color: #bed8ef; |
|
177 |
-moz-border-radius: 10px; |
|
178 |
border-radius: 10px; |
|
179 |
} |
|
180 |
||
181 |
div.sidebar h4 { |
|
182 |
margin: 0; |
|
183 |
padding: 5px 3px; |
|
184 |
color: #90B0D0; |
|
185 |
border-bottom: 1px dotted #5b6f80; |
|
186 |
font-size: 10pt; |
|
187 |
} |
|
188 |
||
189 |
div.sidebar div.slider { |
|
190 |
font-size: 8pt; |
|
191 |
} |
|
192 |
||
193 |
div.sidebar h4 a { |
|
194 |
cursor: pointer; |
|
195 |
} |
|
196 |
||
197 |
div.sidebar.right h4 { |
|
198 |
color: #5a87b3; |
|
199 |
} |
|
200 |
||
201 |
div.sidebar ul.linkblock { |
|
202 |
margin: 0; |
|
203 |
padding: 0; |
|
204 |
list-style-type: none; |
|
205 |
} |
|
206 |
||
207 |
div.sidebar ul.linkblock li a { |
|
208 |
display: block; |
|
209 |
color: #b2b2b2; |
|
210 |
padding: 5px 3px 5px 0.9em; |
|
211 |
} |
|
212 |
||
213 |
div.sidebar ul.linkblock li a:hover { |
|
214 |
color: #c5c5c5; |
|
215 |
background-color: #292929; |
|
216 |
} |
|
217 |
||
958 | 218 |
div.sidebar a.closebtn { |
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
219 |
display: block; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
220 |
float: right; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
221 |
margin-right: 10px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
222 |
color: #456798; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
223 |
background-color: #f0f0f0; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
224 |
padding: 0 8px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
225 |
-moz-border-radius: 0 0 4px 4px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
226 |
cursor: pointer; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
227 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
228 |
|
958 | 229 |
div.sidebar.left a.closebtn { |
230 |
color: #f0f0f0; |
|
231 |
background-color: #404040; |
|
232 |
margin-right: 0px; |
|
233 |
-moz-border-radius: 0 0 0 4px; |
|
234 |
line-height: 19px; |
|
235 |
} |
|
236 |
||
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
237 |
div.right-sidebar-hidden { |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
238 |
margin-left: 10px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
239 |
display: none; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
240 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
241 |
|
958 | 242 |
div.left-sidebar-hidden { |
243 |
display: none; |
|
244 |
position: absolute; |
|
245 |
} |
|
246 |
||
955
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
247 |
div.right-sidebar-hidden a.openbtn { |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
248 |
display: block; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
249 |
float: right; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
250 |
margin-right: -20px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
251 |
color: #456798; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
252 |
background-color: #f0f0f0; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
253 |
padding: 5px 8px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
254 |
-moz-border-radius: 4px 0 0 4px; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
255 |
cursor: pointer; |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
256 |
} |
de4f81abc5e3
Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents:
948
diff
changeset
|
257 |
|
958 | 258 |
div.left-sidebar-hidden a.openbtn { |
259 |
display: block; |
|
260 |
float: left; |
|
261 |
margin-top: 1.8em; |
|
262 |
color: #456798; |
|
263 |
background-color: #f0f0f0; |
|
264 |
padding: 5px 4px; |
|
265 |
-moz-border-radius: 0 4px 4px 0; |
|
266 |
cursor: pointer; |
|
267 |
} |
|
268 |
||
921 | 269 |
div.slider { |
270 |
margin-bottom: 7px; |
|
271 |
} |
|
272 |
||
273 |
/* Content area */ |
|
274 |
div#content-wrapper { |
|
275 |
margin: 0; |
|
276 |
padding: 20px; |
|
277 |
} |
|
278 |
||
279 |
div.content { |
|
280 |
/* Though very subtle, this makes the entire theme less harsh especially with Trebuchet. */ |
|
281 |
color: #202020; |
|
282 |
} |
|
283 |
||
284 |
div.content h1, div.content h2 { |
|
285 |
border-bottom: 1px solid #90B0D0; |
|
286 |
margin-top: 0.2em; |
|
287 |
} |
|
288 |
||
289 |
div.content p { |
|
290 |
margin-left: 0.8em; |
|
291 |
} |
|
292 |
||
948 | 293 |
/* Wikilinks to pages that don't exist */ |
294 |
div.content a.wikilink-nonexistent { |
|
295 |
color: #B05020; |
|
296 |
} |
|
297 |
||
298 |
div.content a.wikilink-nonexistent:visited { |
|
299 |
color: #906030; |
|
300 |
} |
|
301 |
||
921 | 302 |
/* Inline rename */ |
303 |
||
304 |
input#pageheading { |
|
305 |
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif; |
|
306 |
font-size: 18pt; |
|
307 |
font-weight: bold; |
|
308 |
border-width: 0 0 1px 0; |
|
309 |
width: 100%; |
|
310 |
border-bottom: 1px solid #90B0D0; |
|
311 |
margin: 0; |
|
312 |
padding: 0; |
|
313 |
color: #202020; |
|
314 |
background-color: rgb(240, 240, 240, 0.5); |
|
315 |
} |
|
316 |
||
317 |
input#pageheading:focus { |
|
318 |
background-color: #fafafa; |
|
319 |
} |
|
320 |
||
321 |
/* External links */ |
|
322 |
||
323 |
div.content a[href ^="http://"], div#messageBox a[href ^="http://"] { |
|
324 |
color: #4d78a2; |
|
325 |
background: url(../images/links/external.gif) center right no-repeat; |
|
326 |
padding-right: 16px; |
|
327 |
} |
|
328 |
||
329 |
div.content a[href ^="https://"], div#messageBox a[href ^="https://"] { |
|
330 |
color: #4d78a2; |
|
331 |
background: url(../images/links/https.gif) center right no-repeat; |
|
332 |
padding-right: 16px; |
|
333 |
} |
|
334 |
||
335 |
div.content a[href ^="mailto:"], div#messageBox a[href ^="mailto:"] { |
|
336 |
color: #4d78a2; |
|
337 |
background: url(../images/links/email.gif) center right no-repeat; |
|
338 |
padding-right: 16px; |
|
339 |
} |
|
340 |
||
341 |
div.content a[href ^="irc://"], div#messageBox a[href ^="irc://"] { |
|
342 |
color: #4d78a2; |
|
343 |
background: url(../images/links/irc.gif) center right no-repeat; |
|
344 |
padding-right: 16px; |
|
345 |
} |
|
346 |
||
347 |
div.content a[href ^="http://"]:hover, div#messageBox a[href ^="http://"]:hover { |
|
348 |
color: #6488ad; |
|
349 |
} |
|
350 |
||
351 |
div.content a[href ^="https://"]:hover, div#messageBox a[href ^="https://"]:hover { |
|
352 |
color: #6488ad; |
|
353 |
} |
|
354 |
||
355 |
div.content a[href ^="mailto:"]:hover, div#messageBox a[href ^="mailto:"]:hover { |
|
356 |
color: #6488ad; |
|
357 |
} |
|
358 |
||
359 |
div.content a[href ^="irc://"]:hover, div#messageBox a[href ^="irc://"]:hover { |
|
360 |
color: #6488ad; |
|
361 |
} |
|
362 |
||
363 |
/* Form controls */ |
|
364 |
input { |
|
365 |
border: 1px solid #353535; |
|
366 |
background-color: #262626; |
|
367 |
color: #b6b6b6; |
|
368 |
font-size: 8pt; |
|
369 |
font-family: arial, helvetica, sans-serif; |
|
370 |
padding: 2px; |
|
371 |
} |
|
372 |
||
373 |
/* Footer */ |
|
374 |
div#footer { |
|
375 |
margin: 7px 0 0 0; |
|
376 |
border-top: 1px solid #707070; |
|
377 |
background-color: #000; |
|
378 |
color: #909090; |
|
379 |
padding: 4px; |
|
380 |
font-size: smaller; |
|
381 |
font-family: tahoma, arial, sans-serif; |
|
382 |
} |
|
383 |
||
384 |
body.simple div#footer { |
|
385 |
position: absolute; |
|
386 |
bottom: 0px; |
|
387 |
padding: 4px 0; |
|
388 |
width: 100%; |
|
389 |
} |
|
390 |
||
391 |
/* |
|
392 |
* Userpage styles |
|
393 |
*/ |
|
394 |
||
395 |
ul.userpage_links li { |
|
396 |
background-image: url('../images/buttonbg.gif'); |
|
397 |
background-repeat: repeat-x; |
|
398 |
} |
|
399 |
||
400 |
ul.userpage_links li a { |
|
401 |
color: #202020; |
|
402 |
} |
|
403 |
||
404 |
ul.userpage_links li.userpage_tab_active { |
|
405 |
background-image: url('../images/buttonbg-lite.gif'); |
|
406 |
} |
|
407 |
||
408 |
ul.userpage_links li:hover { |
|
409 |
background-image: url('../images/buttonbg-lite.gif'); |
|
410 |
border-color: #404040 #404040 #ffffff #404040; |
|
411 |
border-bottom-width: 0; |
|
412 |
} |
|
413 |
||
414 |
ul.userpage_links li.userpage_tab_active:hover { |
|
415 |
border-bottom-width: 1px; |
|
416 |
} |
|
417 |
||
418 |
ul.userpage_links li a:visited, ul.userpage_links li a:hover { |
|
419 |
color: #202020 !important; |
|
420 |
} |
|
958 | 421 |
|
422 |
/* |
|
423 |
* Some table stuff |
|
424 |
*/ |
|
425 |
||
426 |
div.tblholder th a { |
|
427 |
text-decoration: underline; |
|
428 |
color: #f0f0f0 !important; |
|
429 |
} |