Browse code

Initial uplad w/ php7 fixes

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