Subversion-Projekte lars-tiefland.webhosting

Revision

Revision 1 | Zur aktuellen Revision | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
33 lars 1
/* $URL$ last modified in Revision $Rev$ by $Author$ at $Date$*/
2
 
1 lars 3
/*
4
 
5
  Based on:
6
 
7
  The original SpacePilot3K Theme for phpBB version 2+
8
  Created by Jakob Persson
9
  http://www.jakob-persson.com
10
*/
11
 
12
 
13
 /* General page style. The scroll bar colours only visible in IE5.5+ */
14
body {
15
	background-color: #000000;
16
	scrollbar-face-color: #006699;
17
	scrollbar-highlight-color: #2DB6FD;
18
	scrollbar-shadow-color: #005886;
19
	scrollbar-3dlight-color: #038DD5;
20
	scrollbar-arrow-color: #8BC7FF;
21
	scrollbar-track-color: #005F90;
22
	scrollbar-darkshadow-color: #00466A;
23
	color: #FFFFFF;
24
	background-image : url(images/background2.gif);
25
	font-size : 12px;
26
	margin:6px;
27
	padding:0;
28
}
29
 
30
/* General font families for common tags */
31
font,th,td,p {
32
	font-family: Verdana, Arial, Helvetica, sans-serif;
33
	font-size : 12px;
34
}
35
a:link,a:active,a:visited { color : #8BC7FF; text-decoration: none; }
36
a:hover		{ text-decoration: underline; color : #8BC7FF; }
37
hr	{
38
	height: 0px;
39
	border: solid #CCCCCC 0px;
40
	border-top-width: 1px;
41
}
42
 
43
 
44
/* This is the border line & background colour round the entire page */
45
table	{
46
	border: 1px #0075B2 solid;
47
	width: 100%;
48
	background-image : url(images/background.gif);
49
}
50
 
51
.navig	{
52
	border: 1px #0075B2 solid;
53
	 width:200;
54
	background-image : url(images/background.gif);
55
}
56
 
57
/* This is the outline round the main forum tables */
58
.forumline	{
59
	border: 2px #0075B2 solid;
60
	background-image : url(images/background2.gif);
61
}
62
 
63
 
64
/* Main table cell colours and backgrounds */
65
 
66
td.row1	{
67
	font-size : 12px;
68
}
69
 
70
td.row2	{
71
	background-image : url(images/background3.gif);
72
	font-size : 12px;
73
}
74
 
75
td.row3	{
76
	background-image : url(images/background2.gif);
77
	font-size : 12px;
78
}
79
 
80
 
81
/*
82
  This is for the table cell above the Topics, Post & Last posts on the index.php page
83
  By default this is the fading out gradiated silver background.
84
  However, you could replace this with a bitmap specific for each forum
85
*/
86
td.rowpic {
87
	background-image: url(images/cellpic1.gif);
88
	background-color: #006699;
89
	color: #FFFFFF;
90
}
91
 
92
/* Header cells - the blue and silver gradient backgrounds */
93
th	{
94
	font-size: 11px;
95
	font-weight : bold;
96
	background-color: #8BC7FF;
97
	height: 25px;
98
	background-image: url(images/cellpic3.gif);
99
	color : #006699;
100
}
101
 
102
td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
103
	background-image: url(images/cellpic1.gif);
104
	background-color: #006699;
105
	border: #FFFFFF;
106
	border-style: solid;
107
	height: 28px;
108
	color : #FFFFFF;
109
	text-align:center;
110
}
111
 
112
 
113
/*
114
  Setting additional nice inner borders for the main table cells.
115
  The names indicate which sides the border will be on.
116
  Don't worry if you don't understand this, just ignore it :-)
117
*/
118
td.cat,td.catHead,td.catBottom {
119
	height: 29px;
120
	border-width: 0px 0px 0px 0px;
121
}
122
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
123
	font-weight: bold; border: #FFFFFF; border-style: solid; height: 28px; }
124
td.row3Right {
125
	border: #FFFFFF;
126
	border-style: solid;
127
}
128
 
129
td.spaceRow {
130
	background-color : #000000;
131
	background-image : url(images/background.gif);
132
}
133
 
134
th.thHead,td.catHead { font-size: 12px; border-width: 0px 0px 0px 0px; }
135
th.thSides,td.catSides,td.spaceRow	 { border-width: 0px 0px 0px 0px; }
136
th.thRight,td.catRight,td.row3Right	 { border-width: 0px 0px 0px 0px; }
137
th.thLeft,td.catLeft	  { border-width: 0px 0px 0px 0px; }
138
th.thBottom,td.catBottom  { border-width: 0px 0px 0px 0px; }
139
th.thTop	 { border-width: 0px 0px 0px 0px; }
140
th.thCornerL {
141
	border-width: 0px 0px 0px 0px;
142
}
143
th.thCornerR {
144
	border-width: 0px 0px 0px 0px;
145
 
146
}
147
 
148
 
149
/* The largest text used in the index page title and toptic title etc. */
150
.maintitle,h1,h2	{
151
	font-weight: bold;
152
	font-size: 22px;
153
	font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
154
	text-decoration: none;
155
	line-height : 120%;
156
	color : #FFFFFF;
157
}
158
 
159
h1
160
{
161
	text-align : center;
162
}
163
 
164
.success
165
{
166
	font-size:50px;
167
	color: lime;
168
	text-align : center;
169
}
170
 
171
.error
172
{
173
	font-size:50px;
174
	color: red;
175
	text-align : center;
176
}
177
 
178
.success_upd
179
{
180
	font-size:15px;
181
	color: lime;
182
	text-align : center;
183
}
184
 
185
.error_upd
186
{
187
	font-size:15px;
188
	color: red;
189
	text-align : center;
190
}
191
.pending
192
{
193
	color: red;
194
	font-weight : bold;
195
}
196
 
197
/* General text */
198
.gen { font-size : 12px; }
199
.genmed { font-size : 11px; }
200
.gensmall { font-size : 10px; }
201
.gen,.genmed,.gensmall {
202
	color : #FFFFFF;
203
}
204
 
205
/* General text */
206
.genblue { font-size : 12px; }
207
.genmedblue { font-size : 11px; }
208
.gensmallblue { font-size : 10px; }
209
.genblue,.genmedblue,.gensmallblue {
210
	color : #006699;
211
}
212
 
213
a.genblue,a.genmedblue,a.gensmallblue {
214
	color: #006699;
215
	text-decoration: none;
216
}
217
 
218
a.genblue:hover,a.genmedblue:hover,a.gensmallblue:hover	{
219
	color: #FFFFFF;
220
	text-decoration: underline;
221
}
222
 
223
/* General text */
224
.genblack { font-size : 12px; }
225
.genmedblack { font-size : 11px; }
226
.gensmallblack { font-size : 10px; }
227
.genblack,.genmedblack,.gensmallblack {
228
	color : #000000;
229
}
230
 
231
a.gen,a.genmed,a.gensmall { color: #8BC7FF; text-decoration: none; }
232
a.gen:hover,a.genmed:hover,a.gensmall:hover	{
233
	color: #FFFFFF;
234
	text-decoration: underline;
235
}
236
 
237
 
238
/* The register, login, search etc links at the top of the page */
239
.mainmenu		{
240
	font-size : 11px;
241
	color : #FFFFFF;
242
}
243
a.mainmenu		{ text-decoration: none; color : #8BC7FF;  }
244
a.mainmenu:hover{ text-decoration: underline; color : #FFFFFF; }
245
 
246
/* Forum category titles */
247
.cattitle		{ font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #FFFFFF }
248
a.cattitle		{ text-decoration: none; color : #FFFFFF; }
249
a.cattitle:visited{ color : #FFFFFF; text-decoration: none; }
250
a.cattitle:hover{ color : #FFFFFF; text-decoration: underline; }
251
 
252
.cattitlewhite		{
253
	font-weight: bold;
254
	font-size: 12px ;
255
	letter-spacing: 1px;
256
	color : #FFFFFF;
257
}
258
a.cattitlewhite		{
259
	text-decoration: none;
260
	color : #8BC7FF;
261
}
262
a.cattitlewhite:visited {
263
	color : #8BC7FF;
264
}
265
a.cattitlewhite:hover { color : #FFFFFF; }
266
/* Forum title: Text and link to the forums used in: index.php */
267
.forumlink		{ font-weight: bold; font-size: 12px; color : #8BC7FF; }
268
a.forumlink 	{ text-decoration: none; color : #8BC7FF; }
269
a.forumlink:hover{ text-decoration: underline; color : #FFFFFF; }
270
 
271
 
272
/* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
273
.nav			{ font-weight: bold; font-size: 11px; color : #FFFFFF;}
274
a.nav			{ text-decoration: none; color : #8BC7FF; }
275
a.nav:hover		{ text-decoration: underline; }
276
 
277
 
278
/* titles for the topics: could specify viewed link colour too */
279
.topictitle			{
280
	font-weight: bold;
281
	font-size: 11px;
282
	color : #FFFFFF;
283
}
284
a.topictitle:link   { text-decoration: none; color : #8BC7FF; }
285
a.topictitle:visited { text-decoration: none; color : #8BC7FF; }
286
a.topictitle:hover	{ text-decoration: underline; color : #FFFFFF; }
287
 
288
/* Name of poster in viewmsg.php and viewtopic.php and other places */
289
.name			{
290
	font-size : 11px;
291
	color : #FFFFFF;
292
}
293
 
294
/* Location, number of posts, post date etc */
295
.postdetails		{
296
	font-size : 10px;
297
	color : #FFFFFF;
298
}
299
 
300
 
301
/* The content of the posts (body of text) */
302
.postbody { font-size : 12px;}
303
a.postlink:link	{ text-decoration: none; color : #8BC7FF }
304
a.postlink:visited { text-decoration: none; color : #8BC7FF; }
305
a.postlink:hover { text-decoration: underline; color : #FFFFFF}
306
 
307
/* Quote & Code blocks */
308
.code {
309
	font-family: Courier, 'Courier New', sans-serif;
310
	font-size: 11px;
311
	color: Lime;
312
	border: #DDDDDD;
313
	border-style: solid;
314
	border-left-width: 1px;
315
	border-top-width: 1px;
316
	border-right-width: 1px;
317
	border-bottom-width: 1px
318
}
319
 
320
.quote {
321
	font-family: Verdana, Arial, Helvetica, sans-serif;
322
	font-size: 11px;
323
	color: #8BC7FF;
324
	line-height: 125%;
325
	border: #DDDDDD;
326
	border-style: solid;
327
	border-left-width: 1px;
328
	border-top-width: 1px;
329
	border-right-width: 1px;
330
	border-bottom-width: 1px
331
}
332
 
333
 
334
/* Copyright and bottom info */
335
.copyright		{
336
	font-size: 10px;
337
	font-family: Verdana, Arial, Helvetica, sans-serif;
338
	color: #DDDDDD;
339
/*	letter-spacing: -1px;*/
340
	text-align: center;
341
}
342
 
343
a.copyright		{
344
	color: #8BC7FF;
345
	text-decoration: none;
346
}  a.copyright:hover {
347
	color: #FFFFFF;
348
	text-decoration: underline;
349
}
350
 
351
 
352
/* IFRAME */
353
 
354
iframe {
355
	border-color : #004368 #036A97 #036A97 #004368;
356
}
357
 
358
/* Form elements */
359
form{display:inline}
360
/*input,textarea, select {
361
	font: normal 11px Verdana, Arial, Helvetica, sans-serif;
362
}
363
 
364
input {
365
	text-indent : 2px;
366
}*/
367
 
368
/* The text input fields background colour */
369
input, textarea, select {
370
	background-color : #014669;
371
	border-color : #005886 #038DD5 #038DD5 #005886;
372
	background-image : url(images/background2.gif);
373
	color : #8BC7FF;
374
	scrollbar-face-color: #006699;
375
	scrollbar-highlight-color: #2DB6FD;
376
	scrollbar-shadow-color: #005886;
377
	scrollbar-3dlight-color: #038DD5;
378
	scrollbar-arrow-color: #8BC7FF;
379
	scrollbar-track-color: #005F90;
380
	scrollbar-darkshadow-color: #00466A;
381
	background-attachment : fixed;
382
}
383
 
384
select {
385
	border-color : #005886 #038DD5 #038DD5 #005886;
386
}
387
input.field {
388
	background-color : #006699;
389
	border-color : #005886 #038DD5 #038DD5 #005886;
390
	background-image : url(images/background2.gif);
391
	color : #8BC7FF;
392
}
393
 
394
/* The buttons used for bbCode styling in message post */
395
input.button {
396
	font-size: 11px;
397
	font-family: Verdana, Arial, Helvetica, sans-serif;
398
	background-color : #006699;
399
	color : #8BC7FF;
400
	border-color : #038DD5 #005886 #005886 #038DD5;
401
}
402
/* The main submit button option */
403
input.mainoption {
404
	font-weight : bold;
405
	background-color : #006699;
406
	color : #8BC7FF;
407
	border-color : #038DD5 #005886 #005886 #038DD5;
408
}
409
 
410
/* None-bold submit button */
411
input.liteoption {
412
	font-weight : normal;
413
	background-color : #006699;
414
	color : orange;
415
	border-color : #038DD5 #005886 #005886 #038DD5;
416
}
417
 
418
/* This is the line in the posting page which shows the rollover
419
  help line. This is actually a text box, but if set to be the same
420
  colour as the background no one will know ;)
421
*/
422
.helpline {
423
	border-style: none;
424
	background-color : #000000;
425
	color : #FFFFFF;
426
	background-image : url(images/background3.gif);
427
}
428
 
429
 
430
/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
431
@import url("formIE.css");