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,402 @@
1
+/*
2
+		Skin Name: Epiphany (responsive)
3
+		Skin Download: http://artphilia.de
4
+		Description: This is a grid based responsive layout.
5
+		Author: Nadia Volkrodt
6
+		Author E-Mail: nadia@artphilia.de
7
+*/
8
+
9
+
10
+/* import fonts */
11
+@import url(http://fonts.googleapis.com/css?family=Raleway:400,700,300|Patua+One:400);
12
+@import url(http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css); 
13
+
14
+/* import basic settings, IE-fixes and grids */
15
+@import url(base.css);
16
+
17
+/*---------------------------------------------------------------------
18
+   Basic styles
19
+------------------------------------------------------------------------*/
20
+html, body { 
21
+	height: 100%;
22
+	}            
23
+
24
+body { 
25
+	background-color: #efa008;
26
+	background-image: url(images/bg-pattern.png);
27
+	background-repeat: repeat;
28
+	text-align: justify;
29
+	font-family: 'Raleway', Tahoma, sans-serif;
30
+	font-size: 11pt;
31
+	color: #323232;
32
+	margin: 15px 0;
33
+	padding: 0;
34
+	}
35
+
36
+table { 
37
+	text-align: justify;
38
+	}
39
+tr:nth-child(odd) {
40
+	background-color: transparent;
41
+	padding: 6px;
42
+	}
43
+tr:nth-child(even), td:nth-child(even) {
44
+	background-color: transparent;
45
+	padding: 6px;
46
+	}
47
+
48
+ul li {
49
+	list-style-type: none;
50
+	}
51
+a, a:active, a:visited {
52
+	font-weight: normal;
53
+	text-decoration: none;
54
+	text-transform: none;
55
+	color: #efa008;
56
+	-webkit-transition: 1s;
57
+	-moz-transition: 1s;
58
+	transition: 1s;
59
+	}
60
+a:hover {
61
+	color: #123456;
62
+	text-decoration: none;
63
+	background-color: transparent;
64
+	}
65
+
66
+h1 {
67
+  border-bottom: 1px solid #989898;
68
+  color: #5c5c5c;
69
+	font-family: 'Patua One', cursive;
70
+	font-size: 26pt;
71
+	font-weight: normal;
72
+  margin-bottom: 30px;
73
+  position: relative;
74
+  text-align: center;
75
+}
76
+h1 span {
77
+  background-color: #e8e8e8;
78
+  padding: 0 15px;
79
+  position: relative;
80
+  top: 20px;
81
+}
82
+h2  {
83
+	color: #5c5c5c;
84
+	font-family: 'Patua One', cursive;
85
+	font-size: 22pt;
86
+	font-weight: normal;
87
+	padding: 5px 0;
88
+	}
89
+h3 {
90
+ 	border-left: 10px solid #efa008;
91
+	font-family: 'Patua One', cursive;
92
+	font-size: 18pt;
93
+	padding: 5px 10px; 
94
+	color: #5c5c5c;
95
+	font-weight: normal;
96
+	text-transform: normal;
97
+	}
98
+
99
+h4, #pagetitle, .sectionheader {
100
+	font-size: 16pt;
101
+	font-family: 'Patua One', cursive;
102
+	font-weight: normal;
103
+	text-align: center;
104
+	padding: 10px 0;
105
+	color: #5c5c5c;
106
+}
107
+		
108
+/*---------------------------------------------------------------------
109
+   General page alignment and width
110
+------------------------------------------------------------------------*/
111
+
112
+#header {
113
+	color: #989898;
114
+	padding: 10px;
115
+}
116
+
117
+.container {
118
+	background-color: #e8e8e8;
119
+	background-image: url(images/bg.png);
120
+	background-repeat: no-repeat;
121
+	padding: 10px;
122
+	-webkit-border-radius: 5px;
123
+	-moz-border-radius: 5px;
124
+	border-radius: 5px;
125
+	margin-bottom: 20px;
126
+}
127
+
128
+.content {
129
+	margin: 80px 0 0 0;
130
+	text-align: justify;
131
+	font-style: normal;
132
+	}
133
+
134
+.sidebar {
135
+	margin: 75px 0 25px 0;
136
+	font-style: normal;
137
+	text-align: justify;
138
+	background-color: #dedede;
139
+	padding: 10px;
140
+	-webkit-border-radius: 10px 0 10px 0;
141
+	-moz-border-radius: 10px 0 10px 0;
142
+	border-radius: 10px 0 10px 0;
143
+	}
144
+
145
+.footer {
146
+	text-align: center;
147
+	margin-top: 20px;
148
+	padding: 10px;
149
+	}
150
+
151
+/*---------------------------------------------------------------------
152
+   General page alignment and width
153
+------------------------------------------------------------------------*/
154
+
155
+
156
+.label, label {
157
+	color: #5c5c5c;
158
+	font-weight: bold;
159
+}
160
+
161
+hr {
162
+  height: 1px;
163
+  margin: 15px 0;
164
+  background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0,0,0,0)), color-stop(0.5, #e8e8e8), to(rgba(0,0,0,0)));
165
+  background: -webkit-linear-gradient(left, rgba(0,0,0,0), #e8e8e8, rgba(0,0,0,0));
166
+  background: -moz-linear-gradient(left, rgba(0,0,0,0), #e8e8e8, rgba(0,0,0,0));
167
+  background: -o-linear-gradient(left, rgba(0,0,0,0), #e8e8e8, rgba(0,0,0,0));
168
+  background: linear-gradient(left, rgba(0,0,0,0), #e8e8e8, rgba(0,0,0,0));
169
+  border: 0;
170
+}
171
+hr:after { 
172
+  display: block; 
173
+  content:'';
174
+  height: 30px;
175
+  background-image: -webkit-gradient(radial, 50% 0%, 0, 50% 0%, 116, color-stop(0%, #dcdcdc), color-stop(100%, rgba(255, 255, 255, 0)));
176
+  background-image: -webkit-radial-gradient(center top, farthest-side, #dcdcdc 0%, rgba(255, 255, 255, 0) 100%);
177
+  background-image: -moz-radial-gradient(center top, farthest-side, #dcdcdc 0%, rgba(255, 255, 255, 0) 100%);
178
+  background-image: -o-radial-gradient(center top, farthest-side, #dcdcdc 0%, rgba(255, 255, 255, 0) 100%);
179
+  background-image: radial-gradient(farthest-side at center top, #dcdcdc 0%, rgba(255, 255, 255, 0) 100%);
180
+}
181
+
182
+input, textarea, select {
183
+	background-color: #e8e8e8;
184
+	border: 1px solid #cbcbcb;
185
+	font-family: 'Raleway', Tahoma, sans-serif;
186
+	font-size: 10pt;
187
+	color: #5c5c5c;
188
+	margin: 2px;
189
+	padding: 2px 6px;
190
+	-webkit-border-radius: 4px;
191
+	-moz-border-radius: 4px;
192
+	border-radius: 4px;
193
+}
194
+.button, .button a {
195
+	margin: 0 auto;
196
+	text-align: center;
197
+	text-transform: none;
198
+	margin: 2px;
199
+	padding: 2px 6px;
200
+	cursor: pointer;
201
+	background-color: #e8e8e8;
202
+	border: 1px solid #cbcbcb;
203
+	-webkit-border-radius: 4px;
204
+	-moz-border-radius: 4px;
205
+	border-radius: 4px;
206
+	color: #5c5c5c;
207
+}
208
+
209
+blockquote {
210
+	margin: 10px auto;
211
+	padding: 15px;
212
+	width: 90%;
213
+	border-width: 0 1px;
214
+	border-style: solid;
215
+	border-color: #989898;
216
+}
217
+
218
+/*---------------------------------------------------------------------
219
+  Style of story list
220
+------------------------------------------------------------------------*/
221
+.even, .odd, .comment {
222
+	margin-top: 0;
223
+	margin-right: auto;
224
+	margin-bottom: 0;
225
+	margin-left: auto;
226
+	padding: 5px;
227
+}
228
+.even:hover, .odd:hover {
229
+	background-color: transparent;
230
+}
231
+
232
+/*---------------------------------------------------------------------
233
+   News
234
+------------------------------------------------------------------------*/
235
+#newsarchive, #sortform, .respond {
236
+	text-align: center;
237
+	}
238
+#newsbox {
239
+	background-position: top left;
240
+	background-image: url();
241
+	background-repeat: no-repeat;
242
+	margin: 0 auto;
243
+	padding: 20px;
244
+	}
245
+.newscom {
246
+	background-color: transparent;
247
+	font-weight: normal;
248
+  text-align: right;
249
+  font-family: 'Raleway', Tahoma, sans-serif;
250
+  font-size: 20px;
251
+	padding: 0;
252
+	margin: 0;
253
+	}
254
+.newssig {
255
+	font-family: 'Raleway', Tahoma, sans-serif;
256
+	font-style: none;
257
+	font-size: 9pt;
258
+	text-align: right;
259
+	margin-top: 10px;
260
+	padding: 4px;
261
+	background-color: #dedede;
262
+	-webkit-border-radius: 4px;
263
+	-moz-border-radius: 4px;
264
+	border-radius: 4px;
265
+	}
266
+
267
+/*---------------------------------------------------------------------
268
+   Categories
269
+------------------------------------------------------------------------*/	
270
+.category {
271
+	text-align: left;
272
+	width: 75%;
273
+	margin: 0 auto;
274
+	}
275
+.catimg {
276
+	float: left;
277
+	padding: 3px 6px 3px 0;
278
+	}
279
+.cat_description { 
280
+	padding: 5px;
281
+	text-align: left;
282
+	}
283
+	
284
+/*---------------------------------------------------------------------
285
+  Page links
286
+------------------------------------------------------------------------*/
287
+#pagelinks {
288
+	width: 100%;
289
+	text-align: center;
290
+	padding: 1em;
291
+	font-family: 'Patua One', cursive;
292
+	font-size: 16pt;
293
+	}
294
+#pagelinks a {
295
+	font-weight: normal;
296
+	text-decoration: none;
297
+	text-transform: none;
298
+	-webkit-transition: 1s;
299
+	-moz-transition: 1s;
300
+	transition: 1s;
301
+	}
302
+#pagelinks a:hover {
303
+	text-decoration: none;
304
+	background-color: transparent;
305
+	}
306
+a#currentpage {
307
+	color: #123456;
308
+	background-color: transparent;
309
+	}
310
+/*---------------------------------------------------------------------
311
+   Misc Styles, used in multiple places throughout the page
312
+------------------------------------------------------------------------*/		
313
+#alphabet { 
314
+	text-align: center; 
315
+	padding: 5px; 
316
+	font-family: 'Raleway', Tahoma, sans-serif;
317
+	font-size: 20px;
318
+	}
319
+#jumpmenu {
320
+	text-align: right;
321
+	}
322
+#story {
323
+	padding: 50px 10px;
324
+	text-align: justify;
325
+	}
326
+#login {
327
+	margin: 0;
328
+	}
329
+#columncontainer {
330
+	width: 90%;
331
+	text-align: justify;
332
+}
333
+.column, #columncontainer a {
334
+	font-family: 'Raleway', Tahoma, sans-serif;
335
+	font-size: 18px;
336
+	}
337
+.copyright {
338
+	padding: 5px 0;
339
+	text-transform: uppercase;
340
+	font-size: 9pt;
341
+}
342
+
343
+/*---------------------------------------------------------------------
344
+  MENU
345
+------------------------------------------------------------------------*/
346
+#menu { 
347
+	width: 100%;
348
+	}
349
+#menu ul {
350
+	background: transparent;
351
+	text-align: center;
352
+
353
+	}
354
+#menu li {
355
+	display: inline-block;
356
+	padding: 8px 16px;
357
+	margin: 1px;
358
+	background-color: #292929;
359
+	-webkit-border-radius: 6px 0 6px 0;
360
+	-moz-border-radius: 6px 0 6px 0;
361
+	border-radius: 6px 0 6px 0;
362
+}
363
+#menu li:hover {
364
+	background-color: transparent;
365
+}
366
+#menu a {
367
+	font-family: 'Patua One', cursive;
368
+	font-size: 11pt;
369
+	font-style: normal;
370
+	letter-spacing: 1px;
371
+	text-align: justify;
372
+	text-transform: none;
373
+	color: #efa008;
374
+	-webkit-transition: 1s;
375
+	-moz-transition: 1s;
376
+	transition: 1s;
377
+}
378
+#menu a:hover {
379
+	color: #5c5c5c;
380
+}
381
+
382
+/*---------------------------------------------------------------------
383
+  SITE NAME / SLOGAN
384
+------------------------------------------------------------------------*/
385
+#sitename {
386
+	color: #dedede;
387
+	font-family: 'Patua One', cursive;
388
+	font-size: 32pt;
389
+	text-shadow: 0 0 2px #222;
390
+	padding-top: 20px;
391
+	text-align: center;
392
+}
393
+#slogan {
394
+	color: #dedede;
395
+	font-family: 'Raleway', Tahoma, sans-serif;
396
+	font-size: 10pt;
397
+	text-transform: none;
398
+	font-style: italic;
399
+	margin: -10px 0 0 50px;
400
+	text-align: center;
401
+	padding-bottom: 20px;
402
+}
0 403
\ No newline at end of file