Browse code

3.5.6 efiction version

Jimako authored on 2024/03/09 16:09:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,493 @@
1
+/* Some definitions used everywhere */
2
+BODY { 
3
+	background: #333 url(images/stripes.png);
4
+	color: #000;
5
+	margin: 0;
6
+	padding: 0;
7
+	text-align: center;
8
+	font: 12px arial;
9
+}
10
+
11
+IMG { 
12
+	border: 0;
13
+	padding: 0;
14
+	margin: 0;
15
+}
16
+/* Header cells in tables throughout the site */
17
+TH { 
18
+	background: #c00000;
19
+	color: #FFF;
20
+	font-weight: bold;
21
+}
22
+/* links */
23
+A { 
24
+	color: #333;
25
+	font-weight: bold;
26
+	text-decoration: none;
27
+}
28
+/* hovering links */
29
+A:hover {
30
+	color: #666;
31
+	font-weight: bold;
32
+	text-decoration: none;
33
+}
34
+
35
+#container {
36
+	width: 85%;
37
+	margin: auto;
38
+	text-align: center;
39
+ 	background-color: #fff;
40
+}
41
+
42
+/* the box at the top of the page */
43
+#banner {
44
+	height: 160px;
45
+ 	background: #000000 url(images/top_image.gif) top left repeat-x;
46
+}
47
+
48
+#bannerimage{
49
+	float: left;
50
+	height: 160px;
51
+	background: #000000 url(images/left_top_image.gif) top left;
52
+	text-align: left;
53
+	width: 350px;
54
+	}
55
+
56
+/* Featured Story Block */
57
+#featured {
58
+	margin-left:400px;
59
+	text-align: left;
60
+	padding: 5px 15px 5px 1px;
61
+	color: #fff;
62
+	}
63
+
64
+.headertitle {
65
+    font-size: 15px;
66
+	color: #fff;
67
+	font-weight: bold;
68
+	border-bottom: 1px solid #c00000;
69
+	margin-bottom: 3px;
70
+	}
71
+
72
+#featured a:link, #featured a:visited {
73
+ 	color: #c00000;
74
+ 	text-decoration: none;
75
+ 	font-weight: bold;
76
+}
77
+
78
+#featured a:hover{
79
+ 	color: #333;
80
+    text-decoration: none;
81
+	font-weight: bold;
82
+}
83
+
84
+.greytext {color: #999;}
85
+
86
+/* Header Menu */
87
+
88
+#navigation {
89
+    background: #ccc url(images/greybg.gif) repeat-x top left;
90
+}
91
+
92
+#search {
93
+	text-align: right;
94
+	padding: 3px;
95
+	}
96
+
97
+
98
+/* The location of the div containing the RSS link in the banner area */
99
+#rss {
100
+	position: absolute;
101
+	right: 50px;
102
+	top: 55px; 
103
+}
104
+
105
+/* the following defines your menu below the banner div */
106
+/* the box around the menu and aligning the text to center */
107
+#menu {
108
+	padding: 5px 2px 4px 4px;
109
+	font-size: 12px;
110
+	background: url(images/menubg.gif) repeat-x #c00000;
111
+}
112
+
113
+#menulist {
114
+ 	padding: 0px;
115
+ 	margin: 0px;
116
+ 	text-align: left;
117
+}
118
+
119
+#menulist ul {
120
+ 	margin-left: 0;
121
+ 	padding-left: 0;
122
+ 	white-space: nowrap;
123
+}
124
+
125
+#menulist li {
126
+	 display: inline;
127
+ 	list-style-type: none;
128
+}
129
+
130
+#menulist a { 
131
+	padding: 1px 7px;
132
+ 	margin-right: 3px;
133
+	}
134
+
135
+#menulist a:link, #menulist a:visited {
136
+ 	color: #fff;
137
+ 	text-decoration: none;
138
+ 	font-weight: bold;
139
+}
140
+
141
+#menulist a:hover{
142
+ 	color: #000;
143
+	text-decoration: none;
144
+	font-weight: bold;
145
+}
146
+
147
+
148
+/* the footer box at the bottom of the page */
149
+#footercon {
150
+	clear:both
151
+}
152
+
153
+#footertitle {
154
+	padding:4px;
155
+	color: #ccc;
156
+	font-weight: bold;
157
+	text-align: left;
158
+}
159
+
160
+#footer,#footertitle,#footerbottom{
161
+	background:#5d5d5d url(images/blackbg.gif) repeat-x top left
162
+}
163
+
164
+#footerlogin, #footerblurb{
165
+	background:#ccc url(images/greybg.gif) repeat-x top left
166
+}
167
+
168
+#footerlogin {
169
+	padding:2px 5px;
170
+	color: #000;
171
+}
172
+
173
+#footerlogin a:link {color: #fff;}
174
+
175
+#footermenu {
176
+	padding: 5px 2px 4px 4px;
177
+	font-size: 12px;
178
+	background: url(images/menubg.gif) repeat-x #c00000;
179
+}
180
+
181
+#footermenu a:link{
182
+	color: #333;
183
+}
184
+
185
+#footermenu a:visited{
186
+	color: #333;
187
+}
188
+
189
+#footermenu a:hover{
190
+	color: #fff;
191
+}
192
+
193
+#footerblurb{
194
+	padding: 5px;
195
+}
196
+
197
+#footerbottom {padding: 5px;}
198
+
199
+
200
+/* End universal page setup */
201
+
202
+/* this is a carryover from 1.1.  Generally it is used around tables and table cells. */
203
+.tblborder { 
204
+	padding: 6px;
205
+	border-collapse: collapse;
206
+}
207
+
208
+/* Main page surrounds the text between the header and the footer.  
209
+For IE, height is set to 650 to force the footer down to the bottom of the page where the content is short.  
210
+And the second declaration is for everyone else so that it will scroll if longer but be a minimum of 650px
211
+*/
212
+#mainpage {
213
+	height: 550px;
214
+	padding: 15px;
215
+	background: #FFF;
216
+	text-align: left;
217
+}
218
+html>body #mainpage { 
219
+	height: auto;
220
+	min-height: 550px;
221
+}
222
+
223
+/* This makes the actual story text appear in a 750px box, which prevents those at 800x600 from having to scroll sideways to view the story. To remove it, just delete this css and the "div id=skinny" tag (and the closing tag) from viewstory.tpl
224
+*/
225
+
226
+#skinny{
227
+	margin: auto;
228
+	width: 750px;
229
+	padding: 5px;
230
+	}
231
+
232
+
233
+/* Most pages use pagetitle to format the page's title */
234
+#pagetitle { 
235
+	border-top: 4px solid #000;
236
+	border-bottom: 1px solid #c00000;
237
+	text-align: center;
238
+	font-size: 14px;
239
+	color: #666;
240
+	padding: 3px
241
+	font-weight: bold;
242
+	margin-top: 1em;
243
+	margin-bottom: 1em;
244
+}
245
+
246
+/* 
247
+Where there's a list of alphabet links #alphabet controls their look. 
248
+Just to make things simpler #pagelinks controls the look of the links at the bottom of multi-page results
249
+and will be set here too. Generally, they look alike.
250
+*/
251
+/* the box around the links */
252
+#alphabet, #pagelinks {
253
+	text-align: center;
254
+	word-spacing: .1em;
255
+	margin: 1em;
256
+}
257
+/* each link */
258
+#alphabet A, #pagelinks A {
259
+	color: #FFF;
260
+	text-decoration: none;
261
+	font-weight: bold;
262
+	background: #c00000;
263
+	border: 1px solid #c00000;
264
+	border-collapse: collapse;
265
+	padding: 0 2px;
266
+}
267
+/* each link when hovered over */
268
+#alphabet A:hover, #pagelinks A:hover {
269
+	background: #dbdbdb;
270
+	color: #fff;
271
+}
272
+/* the currently selected letter and currently selected page */
273
+#alphabet #current_letter, #pagelinks #currentpage {
274
+	background: #FFF;
275
+	color: #333;
276
+	font-weight: bold;
277
+	border: 1px solid #c00000;
278
+	padding: 0 2px;
279
+}
280
+/* End alphabet and page link declarations */
281
+
282
+/* labels throughout the site in forms and in other places */
283
+LABEL, .classification {
284
+	color: #666;
285
+	font-weight: bold;
286
+}
287
+/* Admin options in various places.  */
288
+.adminoptions { 
289
+	color: #c00000;
290
+	font-weight: bold;
291
+}
292
+
293
+/* The listings of stories etc. */
294
+/* .sectionheader styles the headings "Stories" and "Series" */
295
+.sectionheader {
296
+	border-top: 4px solid #000;
297
+	border-bottom: 1px solid #c00000;
298
+	text-align: center;
299
+	font-size: 14px;
300
+	font-weight: bold;
301
+	padding: 3px;
302
+	color: #666;
303
+}
304
+
305
+/* The box around each individual story */
306
+.listbox {
307
+	margin: 1em 5%;
308
+	border: 1px solid #dbdbdb;
309
+}
310
+
311
+/* The title bar for each story box. */
312
+.listbox .title {
313
+	background: url(images/menubg.gif) repeat-x #c00000;
314
+	color: #FFF;
315
+	font-weight: bold;
316
+	padding: 4px;
317
+	padding-left: 8px;
318
+}
319
+
320
+.listbox .title a{color:#ccc;}
321
+
322
+/* The content of the box...summary, categories, etc. */
323
+.listbox .content {
324
+	padding: 6px;
325
+	background-color: #ffffff;
326
+}
327
+
328
+/* The tail info published date etc. on the last line */
329
+.listbox .tail {
330
+	background: #ccc url(images/greybg.gif) repeat-x top left;
331
+	padding: 4px; 
332
+}
333
+
334
+/*End story/series listings */
335
+
336
+/* titleblock is used for the title information in series and challenges */
337
+#titleblock {
338
+	margin: 0 10%;
339
+}
340
+
341
+/* The pulldown jump menus on several pages. */
342
+.jumpmenu {
343
+	text-align: right;
344
+	margin-right: 1em;
345
+}
346
+
347
+/* On the story page, there's a jumpmenu at the bottom. It looks better centered, so this will replace the declaration above for that 
348
+drop down list ONLY */
349
+#pagelinks .jumpmenu {
350
+	text-align: center;
351
+}
352
+
353
+/* This is used on series and challenges and other places where a response is solicited */
354
+.respond { 
355
+	text-align: center;
356
+	padding: 6px;
357
+}
358
+
359
+/* The sort menu on the categories page */
360
+#sort { text-align: center; margin: 1em; }
361
+
362
+
363
+/* On pages that don't use listings, the content is surrounded by a div labeled output to */
364
+#output { 
365
+	padding: 10px;
366
+}
367
+
368
+/* User Profile stuff */
369
+/* The top list of information */
370
+#profile {
371
+	margin: 1em 10%;
372
+}
373
+/* The sort menu in the profile */
374
+#profile #sort {
375
+	text-align: right;
376
+	font-weight: bold;
377
+	color: #9ab96e;
378
+ }
379
+/* The following declarations control the tabs */
380
+/* The outer tab box */
381
+#tabs {
382
+	text-align: center;
383
+	margin: 0;
384
+	padding: 0;
385
+}
386
+/* The individual tabs. */
387
+#tabs span {
388
+	font-size: 12px;
389
+	background: #dbdbdb;
390
+	border: 1px solid #000;
391
+	padding: 3px;
392
+}
393
+/* Links in the tabs */
394
+
395
+#tabs #active {
396
+	background: #c00000;
397
+	color: #fff;
398
+}
399
+
400
+/* This controls the look of the blocks on the index page.   */
401
+
402
+/* The box around the block */
403
+.block { 
404
+	margin-bottom: 1.5em;
405
+	background: url(images/blockbg.gif) top left repeat-x #ededed;
406
+}
407
+
408
+/* The block's title */
409
+.block .title {
410
+	border-top: 4px solid #000;
411
+	border-bottom: 1px solid #c00000;
412
+	font-weight: bold;
413
+	font-size: 16px;
414
+	color: #666;
415
+	padding: 2px;
416
+	padding-left: 8px;
417
+	margin-bottom: 3px;
418
+}
419
+
420
+/* The block's content */
421
+.block .content {
422
+	padding: 6px;
423
+}
424
+
425
+#leftindex { 
426
+	width: 200px;
427
+	float: left;
428
+}
429
+
430
+#rightindex {
431
+	margin-left: 220px;
432
+}
433
+
434
+
435
+/* The next link at the bottom of a multi-chapter story */
436
+#next { float: right; }
437
+/* The previous link at the bottom of a multi-chapter story */
438
+#prev { float: left; }
439
+
440
+#browse #category_content { width: 95% !important; margin: 1em auto; }
441
+
442
+#loginblock { 
443
+	margin: 3px 0 0 0;
444
+	text-align: right;
445
+}
446
+
447
+#loginblock .textbox, #loginblock .checkbox { 
448
+}
449
+
450
+#loginblock .button { 
451
+	padding: 0; 
452
+	margin: 0; 
453
+	font-weight: bold; 
454
+	font-family: "Arial"; 
455
+}
456
+#loginlinks {
457
+	display: inline;
458
+}
459
+#loginlinks A {
460
+	color: #999;
461
+}
462
+
463
+.label
464
+	{font-weight: bold;}
465
+
466
+/* Story Notes */
467
+.notes {
468
+	border: 1px solid #666;
469
+	margin: 1em;
470
+	padding: 1em;
471
+}
472
+
473
+.noteinfo {
474
+	border-top: 1px solid #ff0000;
475
+}
476
+	
477
+/*Newsbox Tweaks */
478
+.newsbox {
479
+	margin-bottom: 20px; 
480
+	border-bottom: 1px solid #000;
481
+	}
482
+	
483
+.newstitle {
484
+	font-weight: bold; 
485
+	font-size: 1.3em; 
486
+	border-bottom: 1px dashed #999; 
487
+	margin-bottom: 5px;
488
+	}
489
+	
490
+.commenteven, .commentodd {padding: 3px 10px; margin-bottom: 1.5em; border-bottom: 1px dashed #999;}
491
+.commentsig {font-weight: bold;}
492
+
493
+table {font:12px arial;}
0 494
\ No newline at end of file