1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
.tranzparenz {
background:rgba(255,255,255,0);
}
.subforum, .subforum a {
text-align: center;
font-size: 16px;
color: #a11717;
font-family: 'Georgia', cursive;
}
span.subforum {
width: 80%;
color: #4a4a4a;
background-color: #95bbbc;
font-size: 10px;
text-transform: uppercase;
padding: 3px 3px 3px 3px;
line-height: 15px;
margin-bottom: -10px;
border: 1px solid #dadada;
text-align: center;
display: block;
}
span.subforum:hover {
color: #2b6b73;
border: 1px solid #183c41;
transition: all 1.2s;
}
span.subforum1 {
color: #5d927c ;
font-size: 9px;
text-transform: uppercase;
width: 100%;
padding: 2px 2px 2px 2px;
line-height: ;
padding-left: 10px;
margin-bottom: -3px;
}
<!-- /* Legt die Höhe über dem Header fest */
#pagewidth > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
height: 40px;
}
.nav_n a {
background-color: #5d927c;
margin: 0px 0px 0px -45px;
list-style-type: none;
padding: 11px 25px;
display: inline;
border-radius: 30px 30px 0px 0px;
opacity: 0.7;
text-align: center;
color: white;
font-family: Arial;
font-size: 9px;
text-shadow: 1px 1px 1px black;
letter-spacing: 2px;
text-transform: uppercase;
}
.nav_n {
margin: auto;
width: 93%;
}
strong {
font-weight: normal;
}
/* Spoiler */
.hpm_spoiler, .hpm_spoiler_headinput {
width: 450px !important;
outline:none;
}
/*****ACTIVITY FEED*****/
.xFeedContainer h2:first-child {
visibility: hidden;
margin-top: -40px;
line-height: 0px;}
.xFeedContainer h2:after {
visibility: visible;
content: url(xxx);
background-repeat: no-repeat;
width: 1084px;
padding-right: 0px;
margin-left: 5px;
display: none;
}
#xActivityFeed {
width: 1058px;
margin-top: -25px;
margin-right: 5px;
padding: 10px;
background-color: #f3f5f9;
border: 1px solid #cbcdcd;
}
#xActivityFeed a{
color: #5d927c;
width: 100%;
margin-top: 2px;
padding: 3px;
line-height: ;
text-decoration: none;
}
#xActivityFeed a:hover{
transition: all 1.2s;
color: #515f63;
text-decoration: none;
}
.lastactions li {
border-bottom: 0px !important;
min-height: 10px !important;
}
/***** SCROLLBAR *****/
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #5d927c #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: #ffffff;
}
*::-webkit-scrollbar-thumb {
background-color: #5d927c ;
border-radius: 0px;
border: 3px solid #ffffff;
}
/***** ÜBERSICHT BEREICHE *****/
.forumtable {
border-collapse: separate;
border-spacing: 5px;
width: 1094px;
height: 135px !important;
margin-left: 9px;
margin-top: -10px;
}
.forumtable .firsttd {
border-collapse: none;
padding: 0;
height: 139px;
margin-right: -10px;
}
hr {
display: none;
}
.bereichtitel {
width: auto;
height: 100px;
text-align: center;
padding: 15px 0;
letter-spacing: 2px;
border-radius: 10px 10px 0 0;
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
color: #000 !important;
}
.upperforum {
font-family: 'Indie Flower', serif;
font-size: 20px;
font-weight: 100px;
color: #5d927c;
padding-left: 10px;
margin-right: 30px;
margin-top: 5px;
margin-bottom: -8px;
text-decoration: none !important;
text-align: right;
}
.upperforum:hover {
transition: all 1.0s;
text-shadow: 1px 1px 1px #5d927c;
letter-spacing: 1px;
}
.beschreibungstext{
width: 250px;
float: right;
font-size: 11px;
font-weight: 100px;
margin-right: 30px;
margin-top: 8px;
line-height: 12px;
border-bottom: 0px solid #cbcfcf;
overflow: auto;
}
span.shortfacts:hover {
color: #a74031;
border: 1px solid #a74031;
transition: all 1.2s;
}
span.shortfacts {
width: 90%;
color: #4a4a4a;
background-color: #f9fbff;
font-size: 10px;
text-transform: uppercase;
padding: 3px 3px 3px 3px;
line-height: 15px;
margin-bottom: -10px;
border: 1px solid #f3f5f9;
text-align: center;
display: block;
}
a:link, a:visited {
text-decoration: none;
}
.t_ppcode {background:#f8faff;color:#696969;font-family:Roboto;font-size:11px;margin:auto;width:500px;text-align:justify;line-height:170%;border: 2px solid #cbcdcd;}
.t_ppue {font-family: 'Bodoni Moda', serif;text-align:center;text-transform:uppercase;font-size:24px;color: #5d927c ;margin-top:20px;line-height:150%;}
.t_ppbox {float:left;width:30%;margin:10px;margin-right:0px;margin-bottom:0px;}
.t_ppboxr {float:left;width:66%;margin:10px; margin-top: -10px;margin-left:0px;margin-bottom:0px;}
.t_pppic {border-radius:20px 20px 20px 20px; object-fit: cover; margin: 10px;width:120px;height:120px;border:2px solid #5d927c ;margin-top:0px;}
.t_pplink {background: #ffffff;padding:3px;text-align:center;font-size:9px;text-transform:uppercase;letter-spacing:1px;margin-bottom:-15px;}
.t_pplink i {color:#d7ad9d;margin-right:5px;font-size:12px;}
.t_pppost {padding:0px 15px 0px 15px; overflow:auto;height:350px;}
.t_pppost2 {padding:0px 15px 0px 15px; overflow:auto;height:140px;}
.t_ppshort {height: 230px; margin-top:10px;border:1px solid #5d927c ;padding:10px; overflow: auto;}
.t_ppshort b {color: #5d927c ;text-transform:uppercase;}
.t_pppost b, .t_pppost i {color: #5d927c ;font-size:11px;}
.t_pppost2 b, .t_pppost2 i {color:#5d927c ;font-size:11px;}
.t_ppquote {padding:10px 10px;border-top:1px solid #cbcdcd;border-bottom:1px solid #cbcdcd;margin:10px;font-size:9px;text-transform:uppercase;letter-spacing:1px;text-align:center;}
.t_ppcredit {font-size:8px;text-align:center;text-transform:uppercase;margin-top:-10px;}
/***** TEST ****/
.warpper {
display: flex;
flex-direction: column;
align-items: center;
}
.tab {
cursor: pointer;
padding: 10px 20px;
margint: 0px;
background: #f3f5f9;
display: inline-block;
color: #525252;
font-size: 10px;
text-tranform: uppercase;
border-right: 2px solid #cbcdcd;
border-top: 2px solid #cbcdcd;
border-left: 2px solid #cbcdcd;
border-radius: 3px 3px 0px 0px;
}
.panels {
min-height: auto;
width: auto;
overflow: hidden;
padding: 0px;
}
.panel {
display: none;
animation: fadein 0.8s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.panel-title {
font-size: 1.5em;
font-weight: bold;
}
.radio {
display: none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel {
display: block;
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab {
background: #f8faff;
color: #000;
border-top: 3px solid #5d927c;
}
/***** VORLAGE ADMIN *****/
:root { --rainsp: #5d927c; --rainsm: #7fb8a0; }
.rainsuescont { width: 500px; box-sizing: border-box; height: 40px; margin-top: 0px; line-height: 1.4; }
.rainsues { font-family: 'Bodoni Moda', serif; font-size: 20px; height: 35px; margin-bottom: -30px; text-transform: lowercase; color: var(--rainsp); letter-spacing: 0px; text-transform: uppercase; }
.rainsues:first-letter { color: var(--rainsm); }
.rainsut { font-family: 'Bodoni Moda', serif; font-size: 10px; margin-top: -15px; text-transform: uppercase; letter-spacing: 3px; color: var(--rainsm); }
.rainsut::before { content: ""; display: inline-block; background: var(--rainsm); width: 30px; height: 1px; margin-right: 5px; position: relative; top: -2px; }
.rainsut::after { content: ""; display: inline-block; background: var(--rainsm); width: 30px; height: 1px; margin-left: 5px; position: relative; top: -2px; }
.rainslinien { margin-top: 10px; margin-left: 70px; display: flex; text-align: center; }
.rainslinien div { height: 10px; }
.rainslinie1 { background-color: var(--rainsp); width: 200px; margin-right: 5px; }
.rainslinie2 { background-color: var(--rainsm); width: 300px; }
.rainspost { text-align: justify; margin-top: 15px; margin-left: 72px; width: 500px; }
.rainspost:first-letter { font-family: 'Bodoni Moda', serif; font-size:40px; padding: 5px; color: var(--rainsp); float: left; padding: 7px 12px 0px 0px; }
.rainspost .sprache { color: var(--rainsm); }
.rainspost .sprache::before { content: "»"; color: var(--rainsm); }
.rainspost .sprache::after{ content: "«"; color: var(--rainsm); }
.rainspost .gedanken { font-style: italic; color: var(--rainsm); }
.button_reply {
width: 150px;
margin-top: -15px;
font-size:11px;
color: #5d927c;
text-transform: uppercase;
letter-spacing: 0px;
font-weight: 500;
}
.button_edit {
width: 150px;
margin-left: 60px;
margin-top: -15px;
font-size:11px;
color: #5d927c;
text-transform: uppercase;
letter-spacing: 0px;
font-weight: 500;
}
.bottomtitelschrift {
font-family: 'Bodoni Moda', serif;
font-size: 16px;
font-weight: 500;
color: #5d927c;
margig: 3px;
text-decoration: none !important;
display:inline;
}
.messagecont div {
position: relative;
}
.messagetext {
margin-right: 425px;
margin-left: 2px;
margin-top: 15px;
margin-bottom: 20px;
}
.bubble1{
width: 300px;
margin-top: 20px;
margin-left: 0px;
background: #98bbb1;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
border-radius: 4px;
border: 0px solid transparent;
padding: 15px;
text-align: justify;
font-size: 12px;
color: #2b2b2b;
position:relative;
}
.bubble-arrow1:before {
content: "";
width: 15px;
height: 30px;
position: absolute;
border: 0 solid transparent;
border-top: 9px solid #98bbb1;
border-radius: 0 20px 0;
transform: rotate(37deg) scaleY(-1);
bottom:10px;
right: -18px;
}
.bubble2{
width: 300px;
margin-top: 20px;
margin-left: 0px;
background: #ffffff;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
border-radius: 4px;
border: 0px solid transparent;
padding: 15px;
text-align: justify;
font-size: 12px;
color: #2b2b2b;
position:relative;
}
.bubble-arrow2:before {
content: "";
width: 15px;
height: 30px;
position: absolute;
border: 0 solid transparent;
border-top: 9px solid #ffffff;
border-radius: 0 20px 0;
transform: rotate(145deg);
bottom:10px;
left: -18px;
}
.rahmen1 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-radius: 1px;
border: 1px solid #666666;
}
.rahmen2 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-left-radius: 15px;
border: 1px solid #666666;
}
.rahmen3 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-bottom-left-radius: 15px;
border: 1px solid #666666;
}
.rahmen4 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-left-radius: 150px;
border: 1px solid #666666;
}
.rahmen5 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 15px;
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
border: 1px solid #666666;
}
.rahmen6 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 15px;
border: 1px solid #666666;
}
.rahmen7 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-right-radius: 15px;
border: 1px solid #666666;
}
.rahmen8 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-bottom-right-radius: 15px;
border: 1px solid #666666;
}
.rahmen9 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-right-radius: 150px;
border: 1px solid #666666;
}
.rahmen10 {
transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-webkit-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-moz-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-o-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-ms-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
}
.rahmen11 {
transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-webkit-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-moz-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-o-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-ms-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
}
.rahmen12 {
border:outset 4px #FFFFFF;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
border-top-left-radius:5px;
border-top-right-radius:5px;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
}
.rahmen13 {
box-shadow: 1px 1px 5px #6C6C6C;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #666666;
padding: 1px;
max-width: 500px
}
nach oben springen

css ueberschriften in themen
1
<div class="rainsuescont"><div class="rainsues">This is how we do it!</div></div><div class="rainsut">Las Vegas is waiting for you!</div><div class="rainslinien"><div class="rainslinie1"></div><div class="rainslinie2"></div></div></center><div class="rainspost">Hier findet ihr ein paar Farbfilter, welche ihr auf euren Bildern anwenden könnt. Bedenkt bitte, dass die Filter auf jedem Foto anders aussehen können! Sprich: Probieren geht über studieren!
nach oben springen

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
.tranzparenz {
background:rgba(255,255,255,0);
}
.subforum, .subforum a {
text-align: center;
font-size: 16px;
color: #a11717;
font-family: 'Georgia', cursive;
}
span.subforum {
width: 80%;
color: #4a4a4a;
background-color: #95bbbc;
font-size: 10px;
text-transform: uppercase;
padding: 3px 3px 3px 3px;
line-height: 15px;
margin-bottom: -10px;
border: 1px solid #dadada;
text-align: center;
display: block;
}
span.subforum:hover {
color: #2b6b73;
border: 1px solid #183c41;
transition: all 1.2s;
}
span.subforum1 {
color: #5d927c ;
font-size: 9px;
text-transform: uppercase;
width: 100%;
padding: 2px 2px 2px 2px;
line-height: ;
padding-left: 10px;
margin-bottom: -3px;
}
<!-- /* Legt die Höhe über dem Header fest */
#pagewidth > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
height: 40px;
}
.nav_n a {
background-color: #5d927c;
margin: 0px 0px 0px -45px;
list-style-type: none;
padding: 11px 25px;
display: inline;
border-radius: 30px 30px 0px 0px;
opacity: 0.7;
text-align: center;
color: white;
font-family: Arial;
font-size: 9px;
text-shadow: 1px 1px 1px black;
letter-spacing: 2px;
text-transform: uppercase;
}
.nav_n {
margin: auto;
width: 93%;
}
strong {
font-weight: normal;
}
/***** LAST MESSAGE *****/
.lastmessage {
text-align: center;
text-decoration: none;
font-family: montserrat;
font-size: 13px;
font-weight: light;
letter-spacing: 1px;
font-style: italic;
color: #58414f;
}
.lastmessage:hover {
text-shadow: 0px 0px 1px #363941;
transition: all 0.5s ease 0s;
color: #333333;
}
.lastmuser {
text-align: center;
font-family: montserrat;
font-size: 10px;
color: #a11717;
}
.lastmuser:hover {
text-shadow: 0px 0px 1px #363941;
transition: all 0.5s ease 0s;
}
.messagecont div {
position: relative;
}
.messagetext {
margin-right: 425px;
margin-left: 2px;
margin-top: 15px;
margin-bottom: 20px;
}
/* Spoiler */
.hpm_spoiler, .hpm_spoiler_headinput {
width: 450px !important;
outline:none;
}
.lastactions li {
border-bottom: 0px !important;
min-height: 10px !important;
}
.forumtable {
border-collapse: separate;
border-spacing: 5px;
width: 1094px;
height: 135px !important;
margin-left: 9px;
margin-top: -10px;
}
.forumtable .firsttd {
border-collapse: none;
padding: 0;
height: 139px;
margin-right: -10px;
}
hr {
display: none;
}
.bereichtitel {
width: auto;
height: 100px;
text-align: center;
padding: 15px 0;
letter-spacing: 2px;
border-radius: 10px 10px 0 0;
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
color: #000 !important;
}
.upperforum {
font-family: 'Indie Flower', serif;
font-size: 20px;
font-weight: 100px;
color: #5d927c;
padding-left: 10px;
margin-right: 30px;
margin-top: 5px;
margin-bottom: -8px;
text-decoration: none !important;
text-align: right;
}
.upperforum:hover {
transition: all 1.0s;
text-shadow: 1px 1px 1px #5d927c;
letter-spacing: 1px;
}
.beschreibungstext {
width: 250px;
float: right;
font-size: 11px;
font-weight: 100px;
margin-right: 30px;
margin-top: 8px;
line-height: 12px;
border-bottom: 0px solid #cbcfcf;
overflow: auto;
}
span.tinybox:hover {
color: #356c55;
border: 1px solid #356c55;
transition: all 1.2s;
}
span.tinybox {
width: 90%;
color: #4a4a4a;
background-color: #edf0f4;
font-size: 10px;
text-transform: uppercase;
padding: 3px 3px 3px 3px;
line-height: 15px;
margin-bottom: -10px;
border: 1px solid #5d927c;
text-align: center;
display: block;
}
a:link, a:visited {
text-decoration: none;
}
.button_reply {
width: 150px;
margin-top: -15px;
font-size:11px;
color: #5d927c;
text-transform: uppercase;
letter-spacing: 0px;
font-weight: 500;
}
.button_edit {
width: 150px;
margin-left: 60px;
margin-top: -15px;
font-size:11px;
color: #5d927c;
text-transform: uppercase;
letter-spacing: 0px;
font-weight: 500;
}
.bottomtitelschrift {
font-family: 'Bodoni Moda', serif;
font-size: 16px;
font-weight: 500;
color: #5d927c;
margig: 3px;
text-decoration: none !important;
display:inline;
}
.messagecont div {
position: relative;
}
.messagetext {
margin-right: 425px;
margin-left: 2px;
margin-top: 15px;
margin-bottom: 20px;
}
.bubble1{
width: 300px;
margin-top: 20px;
margin-left: 0px;
background: #98bbb1;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
border-radius: 4px;
border: 0px solid transparent;
padding: 15px;
text-align: justify;
font-size: 12px;
color: #2b2b2b;
position:relative;
}
.bubble-arrow1:before {
content: "";
width: 15px;
height: 30px;
position: absolute;
border: 0 solid transparent;
border-top: 9px solid #98bbb1;
border-radius: 0 20px 0;
transform: rotate(37deg) scaleY(-1);
bottom:10px;
right: -18px;
}
.bubble2{
width: 300px;
margin-top: 20px;
margin-left: 0px;
background: #ffffff;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
border-radius: 4px;
border: 0px solid transparent;
padding: 15px;
text-align: justify;
font-size: 12px;
color: #2b2b2b;
position:relative;
}
.bubble-arrow2:before {
content: "";
width: 15px;
height: 30px;
position: absolute;
border: 0 solid transparent;
border-top: 9px solid #ffffff;
border-radius: 0 20px 0;
transform: rotate(145deg);
bottom:10px;
left: -18px;
}
.rahmen1 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-radius: 1px;
border: 1px solid #666666;
}
.rahmen2 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-left-radius: 15px;
border: 1px solid #666666;
}
.rahmen3 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-bottom-left-radius: 15px;
border: 1px solid #666666;
}
.rahmen4 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-left-radius: 150px;
border: 1px solid #666666;
}
.rahmen5 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 15px;
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
border: 1px solid #666666;
}
.rahmen6 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 15px;
border: 1px solid #666666;
}
.rahmen7 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-right-radius: 15px;
border: 1px solid #666666;
}
.rahmen8 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-bottom-right-radius: 15px;
border: 1px solid #666666;
}
.rahmen9 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-right-radius: 150px;
border: 1px solid #666666;
}
.rahmen10 {
transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-webkit-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-moz-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-o-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-ms-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
}
.rahmen11 {
transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-webkit-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-moz-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-o-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-ms-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
}
.rahmen12 {
border:outset 4px #FFFFFF;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
border-top-left-radius:5px;
border-top-right-radius:5px;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
}
.rahmen13 {
box-shadow: 1px 1px 5px #6C6C6C;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #666666;
padding: 1px;
max-width: 500px
}
#xActivityFeed {
width: 1058px;
margin-top: -25px;
margin-right: 5px;
padding: 10px;
background-color: #f3f5f9;
border: 1px solid #5d927c;
}
#xActivityFeed a{
color: #5d927c;
width: 100%;
margin-top: 2px;
padding: 3px;
line-height: ;
text-decoration: none;
}
#xActivityFeed a:hover{
transition: all 1.2s;
color: #515f63;
text-decoration: none;
}
nach oben springen

MISTER KING TESTFORUM CSS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<!-- /* Legt die Höhe über dem Header fest */
#pagewidth > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
height: 40px;
}
.nav_n a {
background-color: #d6d3d6;
margin: 0px 0px 0px -45px;
list-style-type: none;
padding: 11px 25px;
display: inline;
border-radius: 30px 30px 0px 0px;
opacity: 0.7;
text-align: center;
color: white;
font-family: Arial;
font-size: 9px;
text-shadow: 0px 0px 1px black;
letter-spacing: 2px;
text-transform: uppercase;
}
.nav_n {
margin: auto;
width: 93%;
}
strong {
font-weight: normal;
}
.tranzparenz {
background:rgba(255,255,255,0);
}
/***** LAST MESSAGE *****/
.lastmessage {
text-align: center;
text-decoration: none;
font-family: montserrat;
font-size: 11px;
font-weight: light;
letter-spacing: 1px;
font-style: italic;
color: #58414f;
}
.lastmessage:hover {
text-shadow: 0px 0px 1px #363941;
transition: all 0.5s ease 0s;
color: #333333;
}
.lastmuser {
text-align: center;
font-family: montserrat;
font-size: 10px;
color: #a11717;
}
.lastmuser:hover {
text-shadow: 0px 0px 1px #363941;
transition: all 0.5s ease 0s;
}
.messagecont div {
position: relative;
}
.messagetext {
margin-right: 425px;
margin-left: 2px;
margin-top: 15px;
margin-bottom: 20px;
}
/***** ÜBERSICHT DER KATEGORIEN *****/
.forumtable {
border-collapse: separate;
border-spacing: 5px;
width: 1094px;
height: 135px !important;
margin-left: 9px;
margin-top: -10px;
}
.forumtable .firsttd {
border-collapse: none;
padding: 0;
height: 139px;
margin-right: -10px;
}
hr {
display: none;
}
/***** TITEL DER KATEGORIEN *****/
.bereichtitel {
width: auto;
height: 100px;
text-align: center;
padding: 15px 0;
letter-spacing: 2px;
border-radius: 10px 10px 0 0;
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
color: #000 !important;
}
.titelschrift {
font-family: 'Bodoni Moda', serif;
font-size: 20px;
font-weight: 100px;
color: #18384a;
padding-left: 10px;
margin-right: 30px;
margin-top: 5px;
margin-bottom: -8px;
text-decoration: none !important;
text-align: right;
}
.titelschrift:hover {
transition: all 1.2s;
text-decoration: none;
letter-spacing: 1px;
}
/***** BESCHREIBUNG DER KATEGORIEN *****/
.bereichstext {
width: 250px;
float: right;
font-size: 11px;
font-weight: 100px;
margin-right: 30px;
margin-top: 8px;
line-height: 12px;
border-bottom: 0px solid #cbcfcf;
overflow: auto;
}
/***** STIL DER BEREICHE *****/
span.forenarea {
width: 80%;
color: #4a4a4a;
background-color: #e3e3e3;
font-size: 10px;
text-transform: uppercase;
padding: 3px 3px 3px 3px;
line-height: 15px;
margin-bottom: -10px;
border: 1px solid #dedede;
text-align: center;
display: block;
}
span.forenarea:hover {
color: #999999;
border: 1px solid #999999;
transition: all 1.2s;
}
/***** STIL DER BEREICHE *****/
span.forenarea1 {
color: #5d927c ;
font-size: 9px;
text-transform: uppercase;
width: 100%;
padding: 2px 2px 2px 2px;
line-height: ;
padding-left: 10px;
margin-bottom: -3px;
}
span.shortfacts:hover {
color: #a74031;
border: 1px solid #a74031;
transition: all 1.2s;
}
/* Shortfacts Tabelle */
span.shortfacts {
width: 90%;
color: #4a4a4a;
background-color: #f9fbff;
font-size: 10px;
text-transform: uppercase;
padding: 3px 3px 3px 3px;
line-height: 15px;
margin-bottom: -10px;
border: 1px solid #f3f5f9;
text-align: center;
display: block;
}
.button_reply {
width: 150px;
margin-top: -15px;
font-size:11px;
color: #5d927c;
text-transform: uppercase;
letter-spacing: 0px;
font-weight: 500;
}
.button_edit {
width: 150px;
margin-left: 60px;
margin-top: -15px;
font-size:11px;
color: #5d927c;
text-transform: uppercase;
letter-spacing: 0px;
font-weight: 500;
}
.bottomtitelschrift {
font-family: 'Bodoni Moda', serif;
font-size: 16px;
font-weight: 500;
color: #5d927c;
margig: 3px;
text-decoration: none !important;
display:inline;
}
**** Fließtext *****
.messagecont div {
position: relative;
}
.messagetext {
margin-right: 425px;
margin-left: 2px;
margin-top: 15px;
margin-bottom: 20px;
}
****Whatsapp Bubbels***
#brooklyn-sms-01 { margin: 0 auto; width: 250px; text-align: justify; font-family: 'Cousine'; font-size: 11px; color: #262626; line-height: 165%; } #brooklyn-sms-01 .bubble-white, #brooklyn-sms-01 .bubble-green { border-radius: 0.5em; padding: 15px; box-sizing: border-box; } #brooklyn-sms-01 .bubble-white b, #brooklyn-sms-01 .bubble-green b, #brooklyn-sms-01 .bubble-white b2, #brooklyn-sms-01 .bubble-green b2 { font-weight: 700; letter-spacing: 1px; font-size: 9px; color: #839496; } #brooklyn-sms-01 .bubble-white b:before, #brooklyn-sms-01 .bubble-green b:before { content: "\2713"; display: inline; font-size: 12px; margin-right: 3px; color: #4cd964; } #brooklyn-sms-01 .bubble-white b2:before, #brooklyn-sms-01 .bubble-green b2:before { content: "\2713"; display: inline; font-size: 12px; margin-right: 3px; color: #bdc3c7; } #brooklyn-sms-01 .bubble-white { background: #ffffff; } #brooklyn-sms-01 .bubble-green { background: #edecd1; }
.bubble1{
width: 300px;
margin-top: 20px;
margin-left: 0px;
background: #98bbb1;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
border-radius: 4px;
border: 0px solid transparent;
padding: 15px;
text-align: justify;
font-size: 12px;
color: #000;
position:relative;
}
.bubble-arrow1:before {
content: "";
width: 15px;
height: 30px;
position: absolute;
border: 0 solid transparent;
border-top: 9px solid #98bbb1;
border-radius: 0 20px 0;
transform: rotate(37deg) scaleY(-1);
bottom:10px;
right: -18px;
}
.bubble2{
width: 300px;
margin-top: 20px;
margin-left: 0px;
background: #ffffff;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
border-radius: 4px;
border: 0px solid transparent;
padding: 15px;
text-align: justify;
font-size: 12px;
color: #000;
position:relative;
}
.bubble-arrow2:before {
content: "";
width: 15px;
height: 30px;
position: absolute;
border: 0 solid transparent;
border-top: 9px solid #ffffff;
border-radius: 0 20px 0;
transform: rotate(145deg);
bottom:10px;
left: -18px;
}
/***** Spoiler *****/
.hpm_spoiler, .hpm_spoiler_headinput {
width: 450px !important;
outline:none;
}
/***** Spoiler *****/
.hpm_spoiler, .hpm_spoiler_headinput {
width: 450px !important;
outline:none;
}
/*****ACTIVITY FEED*****/
.xFeedContainer h2:first-child {
visibility: hidden;
margin-top: -40px;
line-height: 0px;}
.xFeedContainer h2:after {
visibility: visible;
content: url(xxx);
background-repeat: no-repeat;
width: 1084px;
padding-right: 0px;
margin-left: 5px;
display: none;
}
#xActivityFeed {
width: 1058px;
margin-top: -25px;
margin-right: 5px;
padding: 10px;
background-color: #e9e8e7;
border: 1px solid #cbcdcd;
}
#xActivityFeed a{
color: #18384a;
width: 100%;
margin-top: 2px;
padding: 3px;
line-height: ;
text-decoration: none;
}
#xActivityFeed a:hover{
transition: all 1.2s;
color: #515f63;
text-decoration: none;
}
.lastactions li {
border-bottom: 0px !important;
min-height: 10px !important;
}
/*****BILDER RAHMEN*****/
.rahmen1 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-radius: 1px;
border: 1px solid #666666;
}
.rahmen2 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-left-radius: 15px;
border: 1px solid #666666;
}
.rahmen3 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-bottom-left-radius: 15px;
border: 1px solid #666666;
}
.rahmen4 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-left-radius: 150px;
border: 1px solid #666666;
}
.rahmen5 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 15px;
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
border: 1px solid #666666;
}
.rahmen6 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 15px;
border: 1px solid #666666;
}
.rahmen7 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-right-radius: 15px;
border: 1px solid #666666;
}
.rahmen8 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-bottom-right-radius: 15px;
border: 1px solid #666666;
}
.rahmen9 {
box-shadow: 1px 1px 5px #6C6C6C;
border-radius: 1px;
border-top-right-radius: 150px;
border: 1px solid #666666;
}
.rahmen10 {
transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-webkit-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-moz-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-o-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
-ms-transform: rotate(354deg) scale(1.00) skew(1deg) translate(0px);
}
.rahmen11 {
transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-webkit-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-moz-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-o-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
-ms-transform: rotate(17deg) scale(1.00) skew(-3deg) translate(0px);
}
.rahmen12 {
border:outset 4px #FFFFFF;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
border-top-left-radius:5px;
border-top-right-radius:5px;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
}
.rahmen13 {
box-shadow: 1px 1px 5px #6C6C6C;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #666666;
padding: 1px;
max-width: 500px
}
nach oben springen

cloudyskies-test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/************************************** HEADBEREICH ***/
#header{ width:1185px;background:#f0f0ef;color:#000;border:none;}.htitel{ font-size:15px;text-transform:uppercase;text-align:center;color:#000;}.hzelle{ padding-bottom:2px;padding-top:2px;}.htext{ height:110px;margin-top:-4px;padding-left:4px;padding-right:4px;font-size:10px;text-align:justify;overflow:auto;}.alink1 a{ text-decoration:none;text-transform:uppercase;transition-duration:0.5s;transition-property:all;transition-timing-function:ease;-moz-transition-duration:0.5s;-o-transition-duration:0.5s;-webkit-transition-duration:0.5s;}.alink1 a:hover{ opacity:0.6;}.htext::-webkit-scrollbar{ width:3px;}.headerlinkkasten{text-align:center;background-color:#f3f3f1;padding:5px 10px 5px 10px;text-shadow:1px 1px 1px #fff;color:#000;text-transform:uppercase;font-size:9.5px;font-weight:bold;letter-spacing:0.5px;}
.nav_n a{background-color:#ffffffb0;margin:-20px 7px 0px -5px;list-style-type:none;padding:11px 25px;font-weight:700;display:inline;border-radius:5px 5px 5px 5px;opacity:0.7;text-align:center;color:white;font-family:montserrat;font-size:12px;text-shadow:1px 1px 1px #fff;letter-spacing:1px;text-transform:uppercase;}
.nav_n{margin:auto;width:98%;}
strong{font-weight:700;}
.tranzparenz{background:rgba(255,255,255,0);}
/************************************** BEITRÄGE & PROFIL***/
.messagetext{ padding-left:41%}
.spoilerclear{clear:both;display:block !important;}
.clear{ visibility:hidden;display:block;height:0;clear:both;}
.column { -webkit-column-count: 2; column-count:2;}
/************************************** BODYFRONT ***/
.überschrift{background-color:#d1cfcf;padding:2px 8px 2px 8px;font-size:10px;font-weight:bold;text-shadow:1px 1px 0px #e1e0e0;color:#645451;text-transform:uppercase;margin-left:500px;}
.xFeedContainer h2:first-child{ visibility:hidden;line-height:0px;}.xFeedContainer h2:after{ visibility:visible;content:url();background-repeat:no-repeat;}
html{ --scrollbarBG: #f4f4f4;--thumbBG: #cebab3;} ::-webkit-scrollbar{ width:6px;height:6px;} body{ scrollbar-width:thin;scrollbar-color:var(--thumbBG) var(--scrollbarBG);} ::-webkit-scrollbar-track{ background:var(--scrollbarBG);}
::-webkit-scrollbar-thumb{ background-color:var(--thumbBG) ;border-radius:6px;border:2px solid var(--scrollbarBG);}
::selection{background:#c4b5b1;color:#000;}
a:link,a:visited,a:active{ color:#44403d;font-weight:bold;line-height:15px;text-shadow:1px 1px 1px #fff;}
float:right;margin:0px 0px 0px 20px;z-index:400;padding:3px;}
:root{--main-bg-color:#0d090a;--sec-bg-color:#361f27;--font1:#d9c4c1;--font2:#e8d3d6;--bars1:#521945;--bars2:#912f56;}
.hpm_spoiler,.hpm_spoiler_headinput{width:450px !important;outline:none;}
.lastactions li{border-bottom:0px !important;min-height:10px !important;}
.forumtable{border-collapse:separate;border-spacing:3px;width:1170px;height:130px !important;margin-left:7px;margin-top:-12px;}
.forumtable .firsttd{ border-collapse:none;padding:0;height:139px;margin-right:-10px;}
hr{display:none;}
.bereichtitel{ width:260px;height:100px;text-align:center;padding:18px 0;letter-spacing:2px;border-radius:10px 10px 0 0;font-size:10px;font-weight:500;text-transform:uppercase;color:#000 !important;}
.upperforum{font-family:'montserrat',serif;font-size:25px;font-weight:700;color: #c5a69ea6;padding-left:-100px;margin-right:240px;margin-top:8px;margin-bottom:-13px;border-bottom:8px solid #f3f3f1;letter-spacing:-2px;text-transform:lowercase;text-decoration:none !important;text-align:right;}
.beschreibungstext{height:45px;width:270px;display:hidden;float:left;font-size:6.5px;font-weight:600;letter-spacing:0px;margin-left:5px;margin-top:15px;line-height:12px;color: #a0a0a0bf;text-transform:uppercase;border-bottom:10px solid #efeeec;overflow:auto;}
span.tinybox:hover{color:#b58c81;border:1px solid #efeeec;transition:all 1.2s;}
span.tinybox{width:90%;color:#b58c81;background-color:#efeeec;font-size:10px;text-transform:uppercase;padding:3px 3px 3px 3px;line-height:15px;margin-bottom:-10px;border:2px solid #efeeec;text-align:center;display:block;}
a:link,a:visited{ text-decoration:none;}
.button_reply{width:150px;margin-top:-15px;font-size:11px;color:#000;text-transform:uppercase;letter-spacing:0px;font-weight:500;}
.button_edit{width:150px;margin-right:60px;margin-top:-15px;font-size:11px;color:#000;text-transform:uppercase;letter-spacing:0px;font-weight:500;}
.bottomtitelschrift{font-family:'montserrat',serif;font-size:11px;font-weight:600;color:#000;margig:3px;text-decoration:none !important;display:inline;}
.subforum,.subforum a {text-align:center;font-size:7.5px;background-color:#f3f3f2;
color:#000;font-family:'montserrat',cursive;}
span.subforum { width:70%;padding:3px 3px 3px 3px;line-height: 15px;
margin-bottom: -10px;border: 1px solid #;color: #d8d7d7;text-align:center;
display:block;margin-left:290px;background-color:#f3f3f2; text-
decoration:none;text-transform:uppercase;transition-duration:0.5s;transition-
property:all;transition-timing-function:ease;-moz-transition-duration:0.5s;-o-transition-
duration:0.5s;-webkit-transition-duration:0.5s;}
span.subforum:hover {color:#c5a69e;border:1px solid #0;transition:all 1.2s;}
span.subforum1 {color:#c5a69e;font-size:8px;text-transform:uppercase;width:50%;
padding:2px 2px 2px 2px ;padding-left:10px;margin-bottom:-3px;}
/***TOOLS***/
{ height:125px;width:245px; width: 250px; margin: auto; padding: 10px; box-sizing: border-box; background: linear-gradient(0deg, #d3cac7, #d3cac7); -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; }
.newsbox_l{ height:195px;width:325px;padding:10px;margin:auto;box-sizing:border-box;background:#c5a69e29;-moz-border-radius:10px;-webkit-border-radius:5px;border-radius:5px;}.newsdatum_l{ box-sizing:border-box;padding:5px;margin:auto;background:#6d554f73;font-family:Oswald;font-size:14px;color:#000;text-transform:uppercase;font-style:italic;text-align:center;}.newsinhalt_l{ height:125px;padding:10px;margin:auto;box-sizing:border-box;background:#ffffff52;font-family:Calibri;font-size:12px;color:#141414;text-align:justify;line-height:1.0;overflow:auto;}
#brooklyn-sms-01{ margin:0 auto;width:250px;text-align:justify;font-family:'Cousine';font-size:11px;color:#262626;line-height:165%;}
#brooklyn-sms-01 .bubble-white,#brooklyn-sms-01 .bubble-green{ border-radius:0.5em;padding:15px;box-sizing:border-box;}
#brooklyn-sms-01 .bubble-white b,#brooklyn-sms-01 .bubble-green b,#brooklyn-sms-01 .bubble-white b2,#brooklyn-sms-01
.bubble-green b2{ font-weight:700;letter-spacing:1px;font-size:9px;color:#839496;}
#brooklyn-sms-01 .bubble-white b:before,#brooklyn-sms-01 .bubble-green b:before{ content:"\2713";display:inline;font-size:12px;margin-right:3px;color:#4cd964;}
#brooklyn-sms-01 .bubble-white b2:before,#brooklyn-sms-01 .bubble-green b2:before{ content:"\2713";display:inline;font-size:12px;margin-right:3px;color:#bdc3c7;}
#brooklyn-sms-01 .bubble-white{ background:#ffffff;}
#brooklyn-sms-01 .bubble-green{ background:#edecd1;}
.bubble1{ width:300px;margin-top:20px;margin-left:0px;background:#b79b94;box-shadow:rgba(0,0,0,0.15) 1.95px 1.95px 2.6px;border-radius:4px;border:0px solid transparent;padding:15px;text-align:justify;font-size:12px;color:#000;position:relative;}
.bubble-arrow1:before{ content:"";width:15px;height:30px;position:absolute;border:0 solid transparent;border-top:9px solid #b79b94;border-radius:0 20px 0;transform:rotate(37deg) scaleY(-1);bottom:10px;right:-18px;}
.bubble2{ width:300px;margin-top:20px;margin-left:0px;background:#ffffff;box-shadow:rgba(0,0,0,0.15) 1.95px 1.95px 2.6px;border-radius:4px;border:0px solid transparent;padding:15px;text-align:justify;font-size:12px;color:#000;position:relative;}
.bubble-arrow2:before{ content:"";width:15px;height:30px;position:absolute;border:0 solid transparent;border-top:9px solid #ffffff;border-radius:0 20px 0;transform:rotate(145deg);bottom:10px;left:-18px;}
/************************************** ICONBAR HACK ***/
.xob_subiconlist {
line-height: 32px;
display: none;
position: absolute;
top: 15px;
left: -240px;
width: 250px;
max-height: 200px;
overflow-y: scroll;
background-color: #f0f0ef;
border: 1px solid black;
z-index: 10;
padding: 1px;
text-align: center;
}
/************************************** POSTVORLAGEN ***/
#postcode1 { width: 350px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode1 > img.gif { max-width: 245px; border: 1px solid #c5a69e; margin: 20px auto; display: block; } #postcode1 > p.text { width: 245px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode1 > div.line { margin: auto; margin-bottom: 20px; width: 245px; height: 1px; background: #c5a69e; } /*
*/ #postcode2 { width: 350px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode2 > div.lyrics { box-sizing: border-box; width: 245px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: justify; font-size: 14px; text-transform: uppercase; color: #c5a69e; line-height: 1.1em; } #postcode2 > p.text { width: 245px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode2 > div.line { margin: auto; margin-bottom: 20px; width: 245px; height: 1px; background: #c5a69e; } #postcode2 > div.lyrics::first-line { font-size: 18px; line-height: 1.2em; } /*
*/ #postcode3 { width: 550px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode3 img.gif { max-width: 220px; border: 1px solid #c5a69e; margin: 20px auto; display: block; } #postcode3 div.lyrics { box-sizing: border-box; width: 240px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: justify; font-size: 14px; text-transform: uppercase; color: #707070; line-height: 1.1em; color: #c5a69e;} #postcode3 > p.text { width: 500px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode3 > div.line { margin: auto; margin-bottom: 20px; width: 500px; height: 1px; background: #c5a69e; } #postcode3 div.lyrics::first-line { font-size: 18px; line-height: 1.2em; } /*
*/ #postcode4 { width: 550px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode4 img.gif { max-width: 220px; border: 1px solid #c5a69e; margin: 20px auto; display: block; } #postcode4 div.lyrics { color: #c5a69e; box-sizing: border-box; width: 500px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: center; font-size: 14px; text-transform: uppercase; line-height: 1.1em; } #postcode4 > p.text { width: 500px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode4 > div.line { margin: auto; margin-bottom: 20px; width: 500px; height: 1px; background: #c5a69e; } #postcode4 div.lyrics::first-line { font-size: 18px; line-height: 1.2em; } /*
*/ #postcode5 { width: 550px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode5 img.gif { float: left; margin: 20px; margin-bottom: 5px; max-width: 180px; border: 1px solid #c5a69e; display: block; } #postcode5 div.lyrics { box-sizing: border-box; width: 240px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: justify; font-size: 14px; text-transform: uppercase; color: #707070; line-height: 1.1em; } #postcode5 > p.text { width: 500px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: 20px auto; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode5 > div.line { margin: auto; margin-bottom: 20px; width: 500px; height: 1px; background: #c5a69e; }
nach oben springen

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
{{loadlayout==true.start}}
{{get_bottomlayout(curlayout)}}
<div class="c_r_cont3"><div class="c_r_top3"><div></div></div><div class="c_r_content3" style="text-align: left;">
{{loadlayout==true.else}}
<br/>
{{mitglied.start}}New Yorker</style>{{mitglied.end}}
{{mitglieder.start}}New Yorker{{mitglieder.end}}
{{ghost.start}}versteckter{{ghost.end}}
{{ghosts.start}}versteckte{{ghosts.end}}
{{gast.start}}Wanderer{{gast.end}}
{{gaeste.start}}Wanderer{{gaeste.end}}
{{global_under_image==true.start}}
<div style="background-image: url({{global_under_image}}); text-align: left; background-position: bottom; background-repeat: no-repeat;">
{{global_under_image==true.else}}
<div class="c_r_cont3"><div class="c_r_top3"><div></div></div><div class="c_r_content3" style="text-align: left;">
{{global_under_image==true.end}}
<table width="100%" cellspacing="8" >
<tr>
<td width="40%" height="80" valign="top" style="margin-right: 5px; padding: 10px; background-color: #f0f0ef; border: 1px solid #e3e2e0; overflow: auto;">
<div style="padding: 5px;">
<small>
<div>
{{firstOn.start}}1{{firstOn.end}}
<center><i> <div class="bottomtitelschrift">{{member_online}} {{member_online==1.mitglied.mitglieder}}</div>{{ghosts_online==true.start}}, {{ghosts_online}} {{ghosts_online==1.ghost.ghosts}} {{ghosts_online==true.end}} und <div class="bottomtitelschrift">{{guests_online}} {{guests_online==1.gast.gaeste}}</div> sind Online</i></center>{{global_hideonlinelist==false.start}}{{useronline==true.start}}
<center>{{useronline.startlist}}{{firstOn==false.start}}, {{firstOn==false.end}}<a href="{{useronline:link}}" style="text-decoration: none;"><span style="{{useronline:usercolor==true.start}}color:{{useronline:usercolor}};{{useronline:usercolor==true.end}}{{useronline:invisible==true.start}} font-style: italic;{{useronline:invisible==true.end}}">{{useronline:name}}{{useronline:user_admin==true.start}}{{global_admin_image==true.start}}<img src="{{global_admin_image}}" alt="A" border='0' />{{global_admin_image==true.end}}{{useronline:user_admin==true.else}}{{useronline:user_moderator==true.start}}{{global_mod_image==true.start}}<img src="{{global_mod_image}}" alt="M" border='0' />{{global_mod_image==true.end}}{{useronline:user_moderator==true.end}}{{useronline:user_admin==true.end}}</span></a>{{firstOn.start}}0{{firstOn.end}}
{{firstOn.start}}0{{firstOn.end}}{{useronline.end}}
{{useronline==true.end}}
{{global_hideonlinelist==false.end}}
<div style="clear: both;"></div><br>
<br>
{{event_view==true.start}}
{{eventtoday==true.start}}<br/>
<img src="http://files.homepagemodules.de/b2001010/a_583.png" style="vertical-align: middle; margin-right: 3px;"/>{{eventtoday_count==true.start}}
<b>{{eventtoday_count}} Ereignis{{eventtoday_count!==1.start}}se{{eventtoday_count!==1.end}} in den nächsten Tagen</b>
{{eventtoday_count==true.else}}
Keine Ereignisse in den nächsten Tagen
{{eventtoday_count==true.end}}
<div>
{{first.start}}1{{first.end}}
{{eventtoday.startlist}}
{{eventtoday:ranged==true.start}}
{{eventtoday:end_wholeday==true.start}}
{{endtime.start}}{{eventtoday:end|dateformat(d.m)}}{{endtime.end}}
{{eventtoday:end_wholeday==true.else}}
{{endtime.start}}{{eventtoday:end|dateformat(d.m. H:i)}}{{endtime.end}}
{{eventtoday:end_wholeday==true.end}}
{{eventtoday:start_wholeday==true.start}}
{{starttime.start}}{{eventtoday:start|dateformat(d.m)}}{{starttime.end}}
{{eventtoday:start_wholeday==true.else}}
{{starttime.start}}{{eventtoday:start|dateformat(d.m. H:i)}}{{starttime.end}}
{{eventtoday:start_wholeday==true.end}}
{{eventtoday:ranged==true.else}}
{{eventtoday:start_wholeday==true.start}}
{{starttime.start}}{{eventtoday:start|dateformat(d.m)}}{{starttime.end}}
{{eventtoday:start_wholeday==true.else}}
{{starttime.start}}{{eventtoday:start|dateformat(d.m. H:i)}}{{starttime.end}}
{{eventtoday:start_wholeday==true.end}}
{{eventtoday:end==true.start}}
{{eventtoday:end_wholeday==true.start}}
{{endtime.start}}{{eventtoday:end|dateformat(d.m)}}{{endtime.end}}
{{eventtoday:end_wholeday==true.else}}
{{endtime.start}}{{eventtoday:end|dateformat(d.m. H:i)}}{{endtime.end}}
{{eventtoday:end_wholeday==true.end}}
{{eventtoday:end==true.end}}
{{eventtoday:ranged==true.end}}
{{first==false.start}},{{first==false.end}} <a href="{{eventtoday:link}}" style="text-decoration: none;"/>{{eventtoday:name}}</a> ({{starttime}}{{eventtoday:ranged==true.start}}{{eventtoday:end==true.start}}-{{endtime}}{{eventtoday:end==true.end}}{{eventtoday:ranged==true.end}}){{first.start}}0{{first.end}}
{{eventtoday.end}}
</div><br/>
{{eventtoday==true.end}}
{{event_view==true.end}}
{{showVisits.start}}0{{showVisits.end}}
{{visits_guests_today==true.start}}{{showVisits.start}}1{{showVisits.end}}{{visits_guests_today==true.end}}
{{visits_members_today==true.start}}{{showVisits.start}}1{{showVisits.end}}{{visits_members_today==true.end}}
{{showVisits==true.start}}
<center><span id="visits_"><br><div class="bottomtitelschrift">Besucherzähler</div><br>
{{visits_members_today==true.start}}
{{visits_members_yesterday==true.start}}
<strong>Heute
{{visits_guests_today==1.start}} war {{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} waren {{visits_guests_today!==1.end}}
{{visits_guests_today==true.start}}
{{visits_guests_today}}
{{visits_guests_today==true.else}}
keine
{{visits_guests_today==true.end}}
{{visits_guests_today==1.start}} Wanderer{{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} Wanderer{{visits_guests_today!==1.end}}
und
{{visits_members_today==true.start}}
{{visits_members_today}}
{{visits_members_today==true.else}}
keine
{{visits_members_today==true.end}}
{{visits_members_today==1.start}}New Yorker{{visits_members_today==1.end}}
{{visits_members_today!==1.start}}New Yorker{{visits_members_today!==1.end}}, gestern
{{visits_guests_yesterday==true.start}}
{{visits_guests_yesterday}}
{{visits_guests_yesterday==true.else}}
keine
{{visits_guests_yesterday==true.end}}
{{visits_guests_yesterday==1.start}}Wanderer{{visits_guests_yesterday==1.end}}
{{visits_guests_yesterday!==1.start}}Wanderer{{visits_guests_yesterday!==1.end}}
und
{{visits_members_yesterday==true.start}}
{{visits_members_yesterday}}
{{visits_members_yesterday==true.else}}
keine
{{visits_members_yesterday==true.end}}
{{visits_members_yesterday==1.start}}New Yorker{{visits_members_yesterday==1.end}}
{{visits_members_yesterday!==1.start}}New Yorker{{visits_members_yesterday!==1.end}}
online.</strong>
{{visits_members_yesterday==true.else}}
<strong>Heute
{{visits_guests_today==1.start}} war {{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} waren {{visits_guests_today!==1.end}}
{{visits_guests_today==true.start}}
{{visits_guests_today}}
{{visits_guests_today==true.else}}
keine
{{visits_guests_today==true.end}}
{{visits_guests_today==1.start}} Wanderer{{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} Wanderer{{visits_guests_today!==1.end}}
und
{{visits_members_today==true.start}}
{{visits_members_today}}
{{visits_members_today==true.else}}
keine
{{visits_members_today==true.end}}
{{visits_members_today==1.start}}New Yorker{{visits_members_today==1.end}}
{{visits_members_today!==1.start}}New Yorker{{visits_members_today!==1.end}}
online. </strong>
{{visits_members_yesterday==true.end}}
{{visits_members_today==true.else}}
{{visits_guests_yesterday==true.start}}
<strong>Heute
{{visits_guests_today==1.start}} war {{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} waren {{visits_guests_today!==1.end}}
{{visits_guests_today==true.start}}
{{visits_guests_today}}
{{visits_guests_today==true.else}}
keine
{{visits_guests_today==true.end}}
{{visits_guests_today==1.start}} Wanderer{{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} Wanderer{{visits_guests_today!==1.end}}, gestern
{{visits_guests_yesterday==true.start}}
{{visits_guests_yesterday}}
{{visits_guests_yesterday==true.else}}
keine
{{visits_guests_yesterday==true.end}}
{{visits_guests_yesterday==1.start}}Wanderer{{visits_guests_yesterday==1.end}}
{{visits_guests_yesterday!==1.start}}Wanderer{{visits_guests_yesterday!==1.end}}
online</strong>
{{visits_guests_yesterday==true.else}}
<strong>Heute
{{visits_guests_today==1.start}} war {{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} waren {{visits_guests_today!==1.end}}
{{visits_guests_today==true.start}}
{{visits_guests_today}}
{{visits_guests_today==true.else}}
keine
{{visits_guests_today==true.end}}
{{visits_guests_today==1.start}} Wanderer{{visits_guests_today==1.end}}
{{visits_guests_today!==1.start}} Wanderer{{visits_guests_today!==1.end}}
online. </strong>
{{visits_guests_yesterday==true.end}}
{{visits_members_today==true.end}}
<br/><br/></span>
{{showVisits==true.end}}<br>
<center><table style="width: 90%; border-spacing: 10px 0px;"><td style="background-color: #f0f0ef; padding-left: 10px; padding-right: 10px; padding-top: 3px;">{{newest_member==true.start}}<img src="//files.homepagemodules.de/b914197/a_23_ba4ff728.png" width="16px" height="16px" style="margin-right: 8px;"/><a href="{{newest_member_link}}" style="text-decoration:none"><span class="bottomtitelschrift">{{newest_member}}</span></a><br/>{{newest_member==true.end}}</td><td style="background-color: #f0f0ef; padding-left: 10px; padding-right: 10px; padding-top: 3px;">
{{user_registered==true.start}}
{{birthday_view==true.start}}
{{birthdaytoday_count==true.start}}
{{birthdaytoday_count==1.start}} {{birthdaytoday_count==1.end}}
{{birthdaytoday_count!==1.start}} {{birthdaytoday_count}} {{birthdaytoday_count!==1.end}}
<img src="//files.homepagemodules.de/b914197/a_22_598cb278.png" width="16px" height="16px" style="margin-right: 4px;"/>
{{birthdaytoday_count==true.else}}
<span class="bottomtitelschrift">no birthday today</span>
{{birthdaytoday_count==true.end}}
{{birthdaytoday==true.start}}
<span>
{{birthdaytoday.startlist}}
<a href="{{birthdaytoday:user_link}}" style="text-decoration: none;"/><div class="bottomtitelschrift">{{birthdaytoday:uname}}</div></a> {{global_hide_age==false.start}}{{global_hide_age==false.end}}
{{birthdaytoday.end}}
</span>
{{birthdaytoday==true.end}}
{{birthday_view==true.end}}
{{user_registered==true.end}}
</td></table>
</div><center></small>
</div>
</td>
<td width="40%" height="180"valign="top" style="margin-left: 5px; padding: 5px; background-color: #f0f0ef; border: 1px solid #e3e2e0; overflow: auto;">
<div style="padding: 5px;">
<small>
<div>
</div></center>
<center>{{useronline_today==true.start}}
<strong><center><i>{{useronlinetoday_count==1.start}}
Heute war 1 Tea - Drinker Online
{{useronlinetoday_count==1.end}}
{{useronlinetoday_count!==1.start}}
Heute waren {{useronlinetoday_count}} New Yorker Online{{useronlinetoday_count!==1.end}}:</i></center></strong>
{{firstOn.start}}1{{firstOn.end}}
{{useronlinetoday.startlist}}{{firstOn==false.start}}, {{firstOn==false.end}}<a href="{{useronlinetoday:user_link}}" style="text-decoration: none;"><span style="{{useronlinetoday:usercolor==true.start}}color:{{useronlinetoday:usercolor}};{{useronlinetoday:usercolor==true.end}}{{useronlinetoday:invisible==true.start}} font-style: italic;{{useronlinetoday:invisible==true.end}}">{{useronlinetoday:username}}</span></a>{{firstOn.start}}0{{firstOn.end}}{{useronlinetoday.end}}
<br/>
{{useronline_today==true.end}}
{{showsocial==true.start}}
<div id="fb_like">
{{fb_like==true.start}}
{{current_page_index==true.start}}
Forum empfehlen:</br>
{{link_for_fb.start}}{{link_current_socialpage==true.start}}{{link_current_socialpage}}{{link_current_socialpage==true.else}}{{link_current_page}}{{link_current_socialpage==true.end}}{{link_for_fb.end}}
{{fb_api==true.start}}
<div class="fb-like" data-name="facebook"
data-href="{{link_for_fb}}"
data-layout="{{fb_style==true.start}}{{fb_style}}{{fb_style==true.else}}standard{{fb_style==true.end}}"
data-action="like"{{fb_share==true.start}} data-share="true"{{fb_share==true.end}}
data-width="330px"
data-show-faces="{{fb_faces==true.start}}true{{fb_faces==true.else}}false{{fb_faces==true.end}}">
</div>
{{fb_api==true.else}}
<iframe data-name="facebook" data-src="https://www.facebook.com/plugins/like.php?href={{link_for_fb}}" scrolling="no" frameborder="0" style="margin-right:10px;border:none; overflow:hidden; width:auto; height:{{fb_faces==true.start}}60{{fb_faces==true.else}}30{{fb_faces==true.end}}px;" allowTransparency="true"></iframe>
{{fb_api==true.end}}
{{current_page_index==true.end}}
{{fb_like==true.end}}
{{plusone==true.start}}
{{current_page_index==true.start}}
</br>
<g:plusone size="medium" href="{{link_current_page}}"></g:plusone>
{{current_page_index==true.end}}
{{plusone==true.end}}
{{twitter==true.start}}
{{current_page_index==true.start}}
</br>
<div data-name="twitter"><a href="https://twitter.com/share" class="twitter-share-button" data-lang="de">Twittern</a></div>
<script type="text/plain" data-type="text/javascript" data-name="twitter" >!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
{{current_page_index==true.end}}
{{twitter==true.end}}
<div style="clear: both;"></div>
</br>
</div>
{{showsocial==true.end}}
{{global_on_useronline_max==true.start}}
Besucherrekord: {{useronline_max_all}} Benutzer ({{useronline_max_time|dateformat}}).
{{global_on_useronline_max==true.end}}
</small>
</div>
</td>
</tr>
</table>
<hr/>
{{loadlayout==true.end}}
<div style="text-align: center; padding: 8px 0px;">
{{global_on_userlist_link==true.start}} <a href="{{link_member}}" style="text-decoration: none !important;">Mitglieder</a> |
{{global_on_userlist_link==true.end}}
{{global_on_useronline_link==true.start}} <a href="{{link_online}}" style="text-decoration: none !important;">Wer ist Online?</a> {{global_on_useronline_link==true.end}}
{{impressum==true.start}}
| <a href="{{link_faq}}" style="text-decoration: none;">FAQ & Impressum</a>
{{impressum==true.else}}
| <a href="{{link_faq}}" style="text-decoration: none;">FAQ</a>
{{impressum==true.end}}
</div>
{{global_under_image==true.start}}
<br/><br/></div>
{{global_under_image==true.else}}
</div>
<div class="c_r_bottom1"><div></div></div>
</div>
<div style="clear:both"></div>
{{global_under_image==true.end}}
{{loadlayout==false.start}}
{{chat_pos==0.start}}
{{chat_on_page}}
{{chat_pos==0.end}}
{{loadlayout==false.end}}
</center>
<!--<script type="text/javascript">try{$(document).ready(function(){$('input[type="submit"]').removeAttr('disabled').click(function(){$(this).attr('disabled','disabled').css('backgroundImage','url(http://files.homepagemodules.de/b2001010/a_821_7ed1d5a4.gif)').css('backgroundRepeat','no-repeat').css('backgroundPosition','3px center').css('paddingLeft','20px');this.value='warten...';newinp = '<input type=\'hidden\' value=\''+this.value+'\' name=\''+this.name+'\' />';$(this).parent().append($(newinp));});});}catch(e){}</script>-->
{{plusone==true.start}}<script type="text/javascript">
window.___gcfg = {
lang: 'de',
parsetags: 'onload'
};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/platform.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>{{plusone==true.end}}
{{guest_chat==true.start}}{{template==1.start}}
{{chatheaderbackground.start}}{{global_area1_bg}}{{chatheaderbackground.end}}
{{chatheadercolor.start}}{{global_area1_color}}{{chatheadercolor.end}}
{{template==1.end}}
{{template==110.start}}
{{chatheaderbackground.start}}{{global_list_bg}}{{chatheaderbackground.end}}
{{chatheadercolor.start}}{{global_body_bg}}{{chatheadercolor.end}}
{{template==110.end}}
{{template==111.start}}
{{chatheaderbackground.start}}{{global_post_bg|rgb_lightness(90)}}{{chatheaderbackground.end}}
{{chatheadercolor.start}}{{global_text_color}}{{chatheadercolor.end}}
{{template==111.end}}
{{template==144.start}}
{{chatheaderbackground.start}}{{global_box_header_background}}{{chatheaderbackground.end}}
{{chatheadercolor.start}}{{global_boxheader_fontcolor}} {{chatheadercolor.end}}
{{template==144.end}}
<style type="text/css">#xChatGuests{font-size:12px;color:{{chatheadercolor}};position:fixed; bottom:0px; right:0px; min-width:153px; height:36px; line-height:36px; vertical-align: bottom;
display:inline-block;border:none; box-shadow:1px 1px 10px 1px #e3e2e0; background-color:{{chatheaderbackground}}; z-index: 9999; padding:0px 10px 0px 10px; cursor:pointer;}
#xChatGuests *,.ucount{color:{{chatheadercolor}}}
</style>
<div id="xChatGuests" class="disconnected" onclick="showGuestNoChatInfo()">
<span class="xChatInfo">
<img title="disconnected" alt="disconnected" src="http://files.homepagemodules.de/b2001010/a_1233_c865a8ae.png" style="vertical-align: middle;">
<span style="margin-left:15px; font-weight:bold">{{chatname==true.start}}{{chatname}}{{chatname==true.else}}Foren-Chat{{chatname==true.end}}</span>
<span style="margin-left:10px;" class="ucspan"><img title="Mitglieder Online" alt="Mitglieder Online" src="http://files.homepagemodules.de/b2001010/a_1240_2bce5bb7.png" style="vertical-align: middle;">
<span class="ucount">{{member_online}}</span></span>
</span>
</div>
<script type="text/javascript">
function showGuestNoChatInfo(){
el = document.getElementById('xChatGuests');
el.innerHTML = '<div style="padding-top:10px;">Bitte melden Sie sich an, um den Foren Chat zu verwenden</div>';
setTimeout("document.getElementById('xChatGuests').parentNode.removeChild(document.getElementById('xChatGuests'))",2000);
}
</script>{{guest_chat==true.end}}
{{addtick==true.start}}{{tick(specialaction)}}{{addtick==true.end}}
{{nomobileforced==true.start}}
<div class="container">
<div id="domobile" class="box">
<div class="boxheader"><strong>Mobile Ansicht deaktiviert</strong></div>
<div class="boxcontent">
<div class="spacer10">
<center><a href="javascript:void(0);" onclick="xSetCookie('nomobile',0,-1); location.reload();">Mobile Ansicht wieder aktivieren</a></center>
</div>
</div>
</div>
</div>
{{nomobileforced==true.end}}
<script>
function initDonationBlocks(){
$('.donationbox .donation_goal_target').html('{{donation_goal}}' + '€');
$('.donationbox .donation_goal_percent_current').html("{{donation_goal_percent}}%");
$('.donationbox .ppercent').css('width',"{{donation_goal_percent}}%");
}
try{initDonationBlocks();}catch(e){}
</script>
{{endbody}}
{{klaro_consent==true.start}}<script>try{klaro.getManager(klaroConfig).applyConsents()}catch(e){}</script>{{klaro_consent==true.end}}
{{tick(html_body_close)}}
nach oben springen

cloudyskies
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/************************************** HEADBEREICH ***/
#header { width:1185px;background:#f0f0ef;color:#000;border:none;}
.htitel { font-size:15px;text-transform:uppercase;text-align:justify;color:#000;}
.hzelle { padding-bottom:2px;padding-top:2px; text-align: justify;}
.htext { height:95px;margin-top:-4px;padding-left:4px;padding-right:4px;font-size:10px;
text-align:justify;overflow:auto;}
.alink1 a { text-decoration:none;text-transform:uppercase;transition-duration:0.5s;
transition-property:all;transition-timing-function:ease;-moz-transition-duration:0.5s;
-o-transition-duration:0.5s;-webkit-transition-duration:0.5s;}
.alink1 a:hover { opacity:0.6;}
.htext::-webkit-scrollbar { width:3px;}
.headerlinkkasten { text-align:center;background-color:#f3f3f3;
padding:5px 10px 5px 10px;text-shadow:1px 1px 1px #fff;color:#000;
text-transform:uppercase;font-size:9.5px;font-weight:bold;letter-spacing:0.5px;}
.nav_n a { background-color:#ffffffb0;margin:-20px 7px 0px -5px;list-style-type:none;
padding:11px 25px;font-weight:700;display:inline;
border-radius:5px 5px 5px 5px;opacity:0.7;text-align:center;color:white;
font-family:montserrat;font-size:12px;text-shadow:1px 1px 1px #fff;
letter-spacing:1px;text-transform:uppercase;}
.nav_n { margin:auto;width:98%;}
strong { font-weight:700;}
.tranzparenz { background:rgba(255,255,255,0);}
/************************************** BEITRÄGE & PROFIL***/
.messagetext { padding-left:41%}
.spoilerclear { clear:both;display:block !important;}
.clear { visibility:hidden;display:block;height:0;clear:both;}
.column { -webkit-column-count: 2; column-count:2;}
.ratingbutton { font-size: 11px; font-weight: 700; color: #242323; background-color: #ffffff70;
border-radius:5%;background-color:#ffffff70; border: 2px solid #ffffff70; padding:5px;
cursor: pointer;}
.tab-links1 { border: 1px solid #d1d1d1; height: 30px; width: 60px; background-color: #eeedec;
color: #898989; font-size: 11px; }
/************************************** BODYFRONT ***/
.überschrift { background-color:#d1cfcf;padding:2px 8px 2px 8px;font-size:10px;font-weight:bold;
text-shadow:1px 1px 0px #e1e0e0;color:#645451;text-transform:uppercase;margin-left:500px;}
.xFeedContainer h2:first-child { visibility:hidden;line-height:0px;}
.xFeedContainer h2:after { visibility:visible;content:url();background-repeat:no-repeat;}
html { --scrollbarBG: #f4f4f4;--thumbBG: #cebab3;} ::-webkit-scrollbar{ width:6px;height:6px;} body{ scrollbar-width:thin;scrollbar-color:var(--thumbBG) var(--scrollbarBG);} ::-webkit-scrollbar-track{ background:var(--scrollbarBG);}
::-webkit-scrollbar-thumb{ background-color:var(--thumbBG) ;border-radius:6px;border:2px solid var(--scrollbarBG);}
::selection { background:#c4b5b1;color:#000;}
a:link,a:visited,a:active { color:#44403d;font-weight:0;line-height:15px;text-shadow:1px 1px 1px #fff;}
:root { --main-bg-color:#0d090a;--sec-bg-color:#361f27;--font1:#d9c4c1;--font2:#e8d3d6;
--bars1:#521945;--bars2:#912f56;}
.hpm_spoiler,.hpm_spoiler_headinput { width:450px !important;outline:none;}
.lastactions li { border-bottom:0px !important;min-height:10px !important;}
.forumtable { border-collapse:separate;border-spacing:3px;width:1170px;
height:130px !important;margin-left:7px;margin-top:-12px;}
.forumtable .firsttd { border-collapse:none;padding:0;height:139px;margin-right:-10px;}
hr { display:none;}
.bereichtitel { width:260px;height:100px;text-align:center;padding:18px 0;
letter-spacing:2px;border-radius:10px 10px 0 0;font-size:10px;
font-weight:500;text-transform:uppercase;color:#000 !important;}
.upperforum {
font-family:'montserrat',serif;
font-size: 20px;
font-weight:700;
color: #0a0a0aa6;
padding-left:-100px;
margin-right:240px;
margin-top:8px;
margin-bottom:-13px;
/* border-bottom:8px solid #f3f3f1; */
letter-spacing:-2px;
text-transform:lowercase;
text-decoration:none !important;
text-align:right;
}
.beschreibungstext {
height: 35px;
width: 270px;
display:hidden;
float:left;
font-size:6.5px;
font-weight: 600;
letter-spacing:0px;
margin-left:5px;
margin-top: 12px;
line-height:12px;
color: #3d3a3abf;
text-transform:uppercase;
border-bottom: 30px solid #dddddd4a;
overflow:auto;
}
span.tinybox:hover { color:#b58c81;border:1px solid #efeeec;transition:all 1.2s;}
span.tinybox { width:90%;color:#b58c81;background-color:#efeeec;font-size:10px;
text-transform:uppercase;padding:3px 3px 3px 3px;line-height:15px;
margin-bottom:-10px;border:2px solid #efeeec;text-align:center;display:block;}
a:link,a:visited { text-decoration:none;}
.button_reply { width:170px;margin-top:-15px;color:#000;
text-transform:uppercase;letter-spacing:0px;font-weight:500;}
.button_edit { width:170px;margin-top:-15px;color:#000;
text-transform:uppercase;letter-spacing:0px;font-weight:500;}
.bottomtitelschrift { font-family:'montserrat',serif;font-size:9px;font-weight:600;
color:#000;margig:3px;text-decoration:none !important;display:inline;}
.subforum,.subforum a { text-align:center;font-size:7.5px;background-color:#f3f3f2;
color:#000;font-family:'montserrat',cursive;}
span.subforum { width:70%;padding:3px 3px 3px 3px;line-height: 15px;
margin-bottom: -10px;border: 1px solid #;color: #000000b5;
text-align:center; display:block;margin-left:290px;background-color:#f3f3f2;
text-decoration:none;text-transform:uppercase;transition-duration:0.5s;
transition-property:all;transition-timing-function:ease;
-moz-transition-duration:0.5s;-o-transition- duration:0.5s;
-webkit-transition-duration:0.5s;}
span.subforum:hover { color:#c5a69e;border:1px solid #0;transition:all 1.2s;}
span.subforum1 { color:#c5a69e;font-size:8px;text-transform:uppercase;width:50%;
padding:2px 2px 2px 2px ;padding-left:10px;margin-bottom:-3px;}
/***TOOLS***/
{ height:125px;width:245px; width: 250px; margin: auto; padding: 10px; box-sizing: border-box; background: linear-gradient(0deg, #d3cac7, #d3cac7); -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; }
.newsbox_l { height:195px;width:325px;padding:10px;margin:auto;
box-sizing:border-box;background:#c5a69e29;-moz-border-radius:10px;
-webkit-border-radius:5px;border-radius:5px;}
.newsdatum_l { box-sizing:border-box;padding:5px;margin:auto;background:#6d554f73;font-family:Oswald;
font-size:14px;color:#000;text-transform:uppercase;font-style:italic;
text-align:center;}
.newsinhalt_l { height:125px;padding:10px;margin:auto;box-sizing:border-box;background:#ffffff52;
font-family:Calibri;font-size:12px;color:#141414;text-align:justify;
line-height:1.0;overflow:auto;}
#brooklyn-sms-01 { margin:0 auto;width:250px;text-align:justify;font-family:'Cousine';
font-size:11px;color:#262626;line-height:165%;}
#brooklyn-sms-01 .bubble-white,#brooklyn-sms-01 .bubble-green { border-radius:0.5em;padding:15px;box-sizing:border-box;}
#brooklyn-sms-01 .bubble-white b,#brooklyn-sms-01 .bubble-green b,#brooklyn-sms-01 .bubble-white b2,#brooklyn-sms-01
.bubble-green b2 { font-weight:700;letter-spacing:1px;font-size:9px;color:#839496;}
#brooklyn-sms-01 .bubble-white b:before,#brooklyn-sms-01 .bubble-green b:before { content:"\2713";display:inline;
font-size:12px;margin-
right:3px;color:#4cd964;}
#brooklyn-sms-01 .bubble-white b2:before,#brooklyn-sms-01 .bubble-green b2:before {content:"\2713";display:inline;
font-size:12px;
margin-right:3px;color:#bdc3c7;}
#brooklyn-sms-01 .bubble-white { background:#ffffff;}
#brooklyn-sms-01 .bubble-green { background:#edecd1;}
.bubble1 { width:300px;margin-top:20px;margin-left:0px;background:#b79b94;
box-shadow:rgba(0,0,0,0.15) 1.95px 1.95px 2.6px;border-radius:4px;
border:0px solid transparent;padding:15px;text-align:justify;
font-size:12px;color:#000;position:relative;}
.bubble-arrow1:before { content:"";width:15px;height:30px;position:absolute;
border:0 solid transparent;border-top:9px solid #b79b94;
border-radius:0 20px 0;transform:rotate(37deg)
scaleY(-1);bottom:10px;right:-18px;}
.bubble2 { width:300px;margin-top:20px;margin-left:0px;background:#ffffff;
box-shadow:rgba(0,0,0,0.15) 1.95px 1.95px 2.6px;border-radius:4px;
border:0px solid transparent;padding:15px;text-align:justify;
font-size:12px;color:#000;position:relative;}
.bubble-arrow2:before { content:"";width:15px;height:30px;position:absolute;
border:0 solid transparent;border-top:9px solid #ffffff;
border-radius:0 20px 0;transform:rotate(145deg);bottom:10px;left:-18px;}
/************************************** ICONBAR HACK ***/
.xob_subiconlist { line-height: 32px; display: none; position: absolute; top: 15px; left: -240px;
width: 250px; max-height: 200px; overflow-y: scroll; background-color: #f0f0ef;
border: 1px solid black; z-index: 10; padding: 1px; text-align: center; }
/************************************** POSTVORLAGEN ***/
#postcode1 { width: 350px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode1 > img.gif { max-width: 245px; border: 1px solid #c5a69e; margin: 20px auto; display: block; } #postcode1 > p.text { width: 245px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode1 > div.line { margin: auto; margin-bottom: 20px; width: 245px; height: 1px; background: #c5a69e; } /*
*/ #postcode2 { width: 350px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode2 > div.lyrics { box-sizing: border-box; width: 245px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: justify; font-size: 14px; text-transform: uppercase; color: #c5a69e; line-height: 1.1em; } #postcode2 > p.text { width: 245px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode2 > div.line { margin: auto; margin-bottom: 20px; width: 245px; height: 1px; background: #c5a69e; } #postcode2 > div.lyrics::first-line { font-size: 18px; line-height: 1.2em; } /*
*/ #postcode3 { width: 550px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode3 img.gif { max-width: 220px; border: 1px solid #c5a69e; margin: 20px auto; display: block; } #postcode3 div.lyrics { box-sizing: border-box; width: 240px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: justify; font-size: 14px; text-transform: uppercase; color: #707070; line-height: 1.1em; color: #c5a69e;} #postcode3 > p.text { width: 500px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode3 > div.line { margin: auto; margin-bottom: 20px; width: 500px; height: 1px; background: #c5a69e; } #postcode3 div.lyrics::first-line { font-size: 18px; line-height: 1.2em; } /*
*/ #postcode4 { width: 550px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode4 img.gif { max-width: 220px; border: 1px solid #c5a69e; margin: 20px auto; display: block; } #postcode4 div.lyrics { color: #c5a69e; box-sizing: border-box; width: 500px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: center; font-size: 14px; text-transform: uppercase; line-height: 1.1em; } #postcode4 > p.text { width: 500px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: auto; margin-bottom: 20px; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode4 > div.line { margin: auto; margin-bottom: 20px; width: 500px; height: 1px; background: #c5a69e; } #postcode4 div.lyrics::first-line { font-size: 18px; line-height: 1.2em; } /*
*/ #postcode5 { width: 550px; margin: auto; background: #f5f5f5; padding: 5px; } #postcode5 img.gif { float: left; margin: 20px; margin-bottom: 5px; max-width: 180px; border: 1px solid #c5a69e; display: block; } #postcode5 div.lyrics { box-sizing: border-box; width: 240px; margin: 20px auto; padding: 15px; background: #f0f0f0; font-family: 'Oswald', sans-serif; text-align: justify; font-size: 14px; text-transform: uppercase; color: #707070; line-height: 1.1em; } #postcode5 > p.text { width: 500px; text-align: justify; color: #202020; font-family: 'Raleway', sans-serif; display: block; margin: 20px auto; font-size: 11px; line-height: 1.8em; letter-spacing: 1px; } #postcode5 > div.line { margin: auto; margin-bottom: 20px; width: 500px; height: 1px; background: #c5a69e; }
/*******************HEADERTEAMBILDER*******************/
.hcontainer {
position: relative;
width: 100%;
max-width:110px;
}
.himage {
display: block;
width: 100%;
height: auto;
}
.hoverlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: 1.2s ease;
background-color:#e3dedc;
}
.hcontainer:hover .hoverlay {
opacity: 1;
}
.hadminprofile {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-49.5%, -48%);
-ms-transform: translate(-49.5%, -48%);
}
/*******************VERZEICHNIS*******************/
#br2 .rules {
overflow: auto;
background-color: #e9e9e9;
position: absolute;
top: 28px;
left: -20px;
right: 0;
bottom: 0;
padding: 15px 20px 15px;
margin-left: 20px;
text-align: justify;
line-height: 1.5;
}
/*******************GESUCHVORLAGE*******************/
.templateboxone {
display: block;
position: relative;
overflow: auto;
width: 220px;
height: 210px;
padding: 5px;
text-align: justify;
margin-left: -650px;
margin-right: 555px;
margin-top: -675px;
}
.templateiconone {
position: relative;
width: 95px;
height: 85px;
margin-left: -650px;
margin-right: 555px;
margin-top: -675px;
object-fit: cover;
object-position: 20%
}
nach oben springen

Tabelle Header
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<table id="header" class="alink1" cellpadding="5" cellspacing="1"><tbody><tr>
<td class="htitel" width="40%"></td>
<td class="htitel" width="20%"></td>
<td class="htitel" width="30%"></td>
<td class="htitel" width="20%"></td>
</tr>
<tr>
<td class="hzelle"><div class="htext"><center>
<div style="margin-top:-3px; padding-left: 3px; padding-right: 3px;"><table><tbody><tr><td><img src="//files.homepagemodules.de/b914071/a_124_f9d16568.gif" alt="headergif" style="background-color:#f3f3f3; padding:3px; margin-right:3px"></td><td><div style="height:100px; margin-top:-4px; overflow:auto; padding-right:3.5px; text-align: justify; line-height:1.2; color:#000; text-transform:uppercase; font-size:7.5px">
<span style="display:block; height:50px; overflow:auto; padding:3px; background-color:#f3f3f3;"><b>Autumn</b> Weit hinten, hinter den Wortbergen, fern der Länder Vokalien und Konsonantien leben die Blindtexte. Abgeschieden wohnen sie in Buchstabhausen an der Küste des Semantik, eines großen Sprachozeans. </span>
<span style="display:block; height:50px; overflow:auto; padding:3px; background-color:#f3f3f3;"><b>WINTER</b> Weit hinten, hinter den Wortbergen, fern der Länder Vokalien und Konsonantien leben die Blindtexte. Abgeschieden wohnen sie in Buchstabhausen an der Küste des Semantik, eines großen Sprachozeans. </span>
<br>
</div></td></tr></tbody></table></div>
</center>
</div></td>
<td class="hzelle"><div class="htext"><table><tbody><tr><td><div class="hcontainer">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="TS" class="himage">
<div class="hoverlay">
<a href="cloudyskies" class="hadminprofile" title="LORENZO">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="bild"></a>
</div>
</div></td><td><div class="hcontainer">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="SC" class="himage">
<div class="hoverlay">
<a href="cloudyskies" class="hadminprofile" title="AUDREY">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="bild"></a>
</div>
</div></td></tr>
<tr><td><div class="hcontainer">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="TS" class="himage">
<div class="hoverlay">
<a href="cloudyskies" class="hadminprofile" title="JAMIE">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="bild"></a>
</div>
</div></td><td><div class="hcontainer">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="SC" class="himage">
<div class="hoverlay">
<a href="cloudyskies" class="hadminprofile" title="SAVANNA">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="bild"></a>
</div>
</div></td></tr><tr><td><div class="hcontainer">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="TS" class="himage">
<div class="hoverlay">
<a href="cloudyskies" class="hadminprofile" title="ADMIN">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="bild"></a>
</div>
</div></td> <td><div class="hcontainer">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="TS" class="himage">
<div class="hoverlay">
<a href="cloudyskies" class="hadminprofile" title="TEAM ACC">
<img src="http://files.homepagemodules.de/b914071/a_128_68cacdd8.png" alt="bild"></a>
</div>
</div></td>
<tr><td>
</div></td></tr>
</tbody></table>
</div></td>
<td class="hzelle"><div class="htext">
<div style="margin-top:-3px; padding-left: 3px; padding-right: 3px;"><table><tbody><tr><td><div class="htext"><div style="font-size:8px; text-transform:uppercase">
<div style="padding:5px 8px 0px 8px">Die Morgensonne bricht sich am Ufer der Themse, als der <b>Tower of London</b> aus dem Nebel auftaucht. Dieses majestätische Bauwerk, das die Geschichte Englands wie kaum ein anderes symbolisiert, erhebt sich majestätisch am Ufer des Flusses. Ein Tag im Tower verspricht eine faszinierende Reise in die Vergangenheit. Die Morgensonne bricht sich am Ufer der Themse, als der <b>Tower of London</b> aus dem Nebel auftaucht. Dieses majestätische Bauwerk, das die Geschichte Englands wie kaum ein anderes symbolisiert, erhebt sich majestätisch am Ufer des Flusses. Ein Tag im Tower verspricht eine faszinierende Reise in die Vergangenheit. Die Morgensonne bricht sich am Ufer der Themse, als der <b>Tower of London</b> aus dem Nebel auftaucht. Dieses majestätische Bauwerk, das die Geschichte Englands wie kaum ein anderes symbolisiert, erhebt sich majestätisch am Ufer des Flusses. Ein Tag im Tower verspricht eine faszinierende Reise in die Vergangenheit. </div><br>
</div></td></tr></tbody></table></div></div></td>
<td class="hzelle"><div class="htext"><table><tbody><tr><td><div class="headerlinkkasten"><a href="FORENLINK" style="color:#000">Prolog</a></div></td><td><div class="headerlinkkasten"><a href="https://cloudyskies-test.xobor.de/" style="color:#000">♥</a></div></td></tr>
<tr><td><div class="headerlinkkasten"><a href="FORENLINK" style="color:#000">rules</a></div></td><td><div class="headerlinkkasten"><a href="FORENLINK" style="color:#000">claims</a></div></td></tr>
<tr><td><div class="headerlinkkasten"><a href="FORENLINK" style="color:#000">Q & A</a></div></td><td><div class="headerlinkkasten"><a href="FORENLINK" style="color:#000">lists</a></div></td></tr>
<tr><td><div class="headerlinkkasten"><a href="FORENLINK" style="color:#000">epilog</a></div></td><td><div class="headerlinkkasten"><a href="FORENLINK" style="color:#000">wanteds</a></div></td></tr></tbody></table>
</center> </div></td>
</tr></table></center><br>
<img src="//files.homepagemodules.de/b914071/a_133_a2be49c9.gif" width="1185px" height="600px" />
nach oben springen

Inhaltsverzeichnis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<div class="c_r_cont1">
<div class="c_r_top1">
<div></div>
</div>
<div class="c_r_content1">
<div class="default-css">
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet" type="text/css"><style>/* COPYRIGHT BY MAY @ STORMING GATES
*/ #br2 { margin: auto; width: auto; height: 575px; box-sizing: border-box; font-size: 11px; color: #000000; } /*
*/ #br2 .outer { background-color: #; height:575px; width: auto; box-sizing: border-box} /*
*/ #br2 .inhalt { position: relative; height: 575px; width: 1120px; clear: both; margin: auto; text-align: center; box-sizing: border-box; } /*
*/ #br2 .menu { display: inline-block; }/*
*/ #br2 .menu label { background-color: #e9e9e9; padding: 5px 10px 5px 10px; margin-right:5px; font-size:9px; font-weight:bold; text-transform:uppercase; color:#000; transition: all 0.5s ease-in; -o-transition: all 0.5s ease-in;-ms-transition: all 0.5s ease-in; -moz-transition: all 0.5s ease-in; -webkit-transition: all 0.5s ease-in; } /*
*/ #br2 .menu [type=radio] { display: none; } /*
*/ #br2 [type=radio]:checked ~ label { background: #f3f3f3; z-index: 2; color: #000000; } /*
*/ #br2 [type=radio]:checked ~ label ~ .rules { z-index: 1; } /*
*/ #br2 .rules { background-color:#e9e9e9; position: absolute; top: 28px; left: -20px; right: 0; bottom: 0; padding: 15px 20px 15px; margin-left: 20px; text-align: justify; line-height: 1.5;} /*
*/ #br2 h2 { margin-top: 0px; color: #636f5c; text-align: center; } /*
*/ #br2 i { color: #; } /*
*/ #br2 u { text-decoration: none; border-bottom: 1px dashed #717e5b; } /*
*/ #br2 p { padding-left: 3px; } /*
</style>
<div id="br2"><div class="outer"><div class="inhalt">
<div class="menu"><input id="menu-1" name="menu-group-1" checked="" type="radio"><label for="menu-1">Prolog</label>
<div class="rules"><p></p><table><tbody><tr><td><div style="width:200px; height:500px; overflow:auto; font-size:9px">
<div style="text-transform:uppercase; font-size:9px; letter-spacing:0.5px; font-weight:bold"><span style="color:#afa396">• Info:</span> <span style="color:#000">Prolog</span></div>
<hr>Vielleicht ist euch bereits aufgefallen, dass es bei uns keinen öffentlichen Bereich für Charakterbewerbungen gibt. Dies hat einen Grund: Wir betrachten uns selbst als <b>halbprivat.</b>
<br>
<br>Das bedeutet, dass wir keine Charaktere aufnehmen, die sich einfach so frei bewerben möchten oder auf der Suche nach einem neuen Zuhause sind. Stattdessen haben wir uns dazu entschieden, ausschließlich Charaktere aufzunehmen, die entweder auf eine Suchanzeige reagieren oder durch eine Charaktervorstellung genügend Verbindungen zu bereits existierenden Charakteren herstellen können.<br>
<br>Diese Entscheidung hat einen klaren Zweck: Wir möchten sicherstellen, dass niemand in unserer Gemeinschaft alleine in einer Ecke sitzt. Wir möchten verhindern, dass Charaktere "tot" sind, von Forum zu Forum springen oder dass Mitglieder Schwierigkeiten haben, Anschluss zu finden. Uns ist die Lebendigkeit unserer Charaktere und die Kreativität, die wir in sie investieren, sehr wichtig.<br>
<br>
Deshalb möchten wir Menschen willkommen heißen, die diese Werte teilen und ebenfalls einen Ort suchen, an dem sie sich ausleben können, ohne von oberflächlichen Charakteren umgeben zu sein. Bei uns geht Qualität über Quantität. <br>
<br>
Unsere Gemeinschaft zeichnet sich durch eine einzigartige und lebendige Welt aus, in der jeder Charakter eine wichtige Rolle spielt. Wir sind stolz darauf, dass unsere Mitglieder Zeit und Mühe investieren, um diese Welt zu bereichern.
<br>
<br>
Wir glauben fest daran, dass unsere halbprivate Herangehensweise dazu beiträgt, dass jeder in unserer Community ein wirklich bedeutungsvolles Erlebnis genießen kann. Wenn ihr euch dazu entscheidet, ein Teil unserer Gemeinschaft zu werden, werdet ihr Teil einer fantastischen Reise sein, bei der eure Kreativität und euer Engagement geschätzt werden.
<br>
<br>
Wir freuen uns darauf, gemeinsam mit euch diese spannende Reise anzutreten und eine Welt voller Möglichkeiten zu entdecken. Willkommen bei uns! </b></div></td>
<td><div style="width:auto; height:500px; overflow:auto; border-left:1px solid #d1d1c5; padding-left:20px; ">
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">First Steps</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">§1. Bei der Registrierung eures Charakters bitten wir euch, ausschließlich den Vor- und Nachnamen anzugeben. Wir weisen euch darauf hin, das wir auf grund der Xobor Platform keine Namen mit sonderzeichen akzeptieren können. Zweitnamen und Rufnamen sollten bei der Anmeldung unerwähnt bleiben, können jedoch später im Profil ergänzt werden. Nachnamen sind nur erlaubt, wenn zwischen den Charakteren ein familiäres Verhältnis besteht. Vornamen sind in unserer Community einzigartig, und Doppelungen sind derzeit nicht gestattet. Dies bedeutet, dass jeder Vorname nur einmal vorkommt. Bitte beachtet diese Regel, um Verwirrung zu vermeiden und sicherzustellen, dass euer Charakter einen eindeutigen Namen trägt.
<br>
<br>
§2. Wir legen großen Wert darauf, dass die Verwendung von Vorlagen in euren Spielen und anderen Themen innerhalb unserer Community reibungslos und ohne technische Probleme verläuft. Dazu gehört insbesondere das ordnungsgemäße Schließen von Div-Elementen in euren Beiträgen. Dies ist entscheidend, um sicherzustellen, dass unsere Website und alle damit verbundenen Funktionen, wie Plugins oder das Design, einwandfrei funktionieren.<br>
<br>
* Wir möchten euch dringend darum bitten, sicherzustellen, dass ihr die Div-Elemente in euren Posts korrekt schließt. Wenn dies nicht ordnungsgemäß durchgeführt wird, kann dies schwerwiegende Auswirkungen auf die Funktionalität unseres Forums haben. Dies könnte dazu führen, dass wichtige Funktionen beeinträchtigt werden und das gesamte Design der Seite gestört wird.<br>
<br>
* Bitte beachtet, dass wir uns das Recht vorbehalten, Beiträge zu überprüfen und die Formatierung aus dem betreffenden Post zu entfernen, wenn Vorlagen nicht ordnungsgemäß verwendet werden oder die Formatierung das Forum stört. Dies geschieht nicht, um euch zu bestrafen, sondern vielmehr, um sicherzustellen, dass die Website in bestmöglichem Zustand bleibt und alle Mitglieder reibungslos darauf zugreifen können.
<br>
<br>
§3. Wir möchten euch bitten, bei der Auswahl eures Avatars einige wichtige Richtlinien zu beachten, um sicherzustellen, dass unsere Gemeinschaft ihren einzigartigen 'old-school' Stil bewahrt und Personen als Avatare beherbergt, die im öffentlichen Leben bekannt sind. Bitte beachtet, dass wir keine "Influencer" oder Influencer-Models als Avatar-Personen akzeptieren. Stattdessen setzen wir auf Gesichter von Personen, die in der Öffentlichkeit einen gewissen Bekanntheitsgrad erreicht haben, wie Schauspieler und Musiker, die beispielsweise unter einem Label stehen.
<br>
<br>
Wir verstehen, dass das Verifizierungshäkchen auf sozialen Medien als Indikator für öffentliche Bekanntheit betrachtet werden könnte, doch dies allein genügt uns nicht, um zu bestätigen, dass eine Person im öffentlichen Leben steht. Wir benötigen nach wie vor eine gewisse Verifizierung und möchten euch darum bitten, dies zu respektieren.<br>
<br>
Solltet ihr unsicher sein oder Fragen zur Avatarwahl haben, zögert bitte nicht, euch mit uns in Verbindung zu setzen. Wir sind stets bereit, Absprachen zu treffen und euch bei der Auswahl eines passenden Avatars zu unterstützen. Unser Ziel ist es, sicherzustellen, dass unsere Gemeinschaft ihren einzigartigen Stil beibehält und gleichzeitig die Bedürfnisse und Vorlieben unserer Mitglieder respektiert werden.
</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">HOW WE DEAL WITH THIS</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Verständlicherweise möchte niemand bei seinem Hobby unter Druck gesetzt werden, und dies ist auch nicht unser Anliegen. Dennoch müssen wir einige Richtlinien festlegen, die wir euch bitten, zu beachten. Diese dienen dazu, die Aktivität in unserem Inplay aufrechtzuerhalten und sicherzustellen, dass alle Mitglieder gleichermaßen am Spaß teilhaben können. Im Folgenden erläutern wir diese Regeln im Detail:<br>
<br>
1. Abmeldung bei längerer Inaktivität: Wenn ihr wisst, dass ihr für einen Zeitraum von mehr als 14 Tagen nicht aktiv am Inplay teilnehmen könnt, sei es aufgrund von Urlaub, Krankheit, beruflichen Verpflichtungen, oder Internetproblemen, bitten wir euch, euch in eurem Profil abzumelden und eine Benachrichtigung im dafür vorgesehenen Forumsthread zu hinterlassen. Dies ermöglicht es uns, eure Abwesenheit zu vermerken und eure Charaktere entsprechend zu berücksichtigen. Während eurer Abwesenheit dürft ihr keine neuen Charaktere anmelden, um die Übersichtlichkeit zu wahren.<br>
<br>
2. Aktive Nutzung von Charakteren: Wir überprüfen regelmäßig, ob Mitglieder Charaktere besetzen, nur um sie oder die dazugehörige Avatar-Person zu haben, oder ob sie tatsächlich aktiv mit ihnen spielen. Wenn wir feststellen, dass Charaktere nicht aktiv genutzt werden, werden wir dies freundlich ansprechen und den weiteren Verlauf gemeinsam besprechen. In solchen Fällen behalten wir uns das Recht vor, eine Charaktersperre auf unbestimmte Zeit zu verhängen, was bedeutet, dass ihr während dieser Zeit keine weiteren Charaktere erstellen dürft. Die Aufhebung dieser Sperre erfolgt erst nach einer deutlichen Verbesserung eurer Aktivität. Sollte Sich auch nach einem gemeinsamen Gespräch das Verhalten und besetzen des Avatar/Charakter ändern, nehmen wir uns das Recht heraus, den Charakter aus dem Forum zu entfernen und jemanden anderem die Chance zu geben den Avatar zu bentuzen.
<br>
<br>
3. Keine White- oder Blacklist: In unserem Forum verwenden wir keine White- oder Blacklists, um die Aktivität der Mitglieder zu überwachen. Stattdessen nehmen wir uns die Zeit, persönlich Mitglieder anzuschreiben, bei denen es an Ingame-Aktivität mangelt, und suchen gemeinsam nach Lösungen. Wir schätzen alle Formen von Aktivität, sei es Ingame-Posts, Gästebucheinträge oder "MiniScenes," und betrachten sie als wertvollen Beitrag zur Community.<br>
<br>
Unser Ziel ist es, eine aktive und einladende Community aufrechtzuerhalten, in der jeder die Möglichkeit hat, in seinem eigenen Tempo und nach seinen persönlichen Umständen am Inplay teilzunehmen. Wir schätzen eure Mitarbeit und euer Engagement bei der Einhaltung dieser Regeln und stehen jederzeit zur Verfügung, um eventuelle Fragen oder Bedenken zu klären und gemeinsam Lösungen zu finden.
</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">LAST, BUT NOT LEAST</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Wir möchten euch gerne ausführlich darüber informieren, wie das Bewerbungsverfahren und die Charaktergestaltung in unserer Community ablaufen. Bei uns gibt es keine Möglichkeit, einen Charakter ohne vorherigen Anhang zu verkörpern, und wir haben bewusst keinen öffentlichen Bewerbungsbereich. Stattdessen haben wir ein einzigartiges System entwickelt, das auf eine Suche nach Anschluss und sorgfältiger Charaktervorstellung basiert.<br>
<br>
1. Suche nach Anschluss oder Charaktervorstellung: Wir laden euch ein, euch entweder auf eine Suchanzeige zu melden oder euren Charakter durchdacht vorzustellen. Dieser Ansatz gewährleistet, dass jeder Charakter in unserer Gemeinschaft direkt Anschluss findet. Wir verstehen, dass es manchmal schwierig sein kann, den Einstieg zu finden, und deshalb steht unser Forumsteam immer zur Verfügung, um euch zu unterstützen. Wir möchten betonen, dass niemand von uns abgewiesen wird. Unser Ziel ist es, gemeinsam mit euch einen Weg zu finden, Teil unserer Community zu werden. Bitte habt keine Angst vor dieser "neuen Art" der Bewerbung.<br>
<br>
2. Keine Steckbriefpflicht: Einmal in unserer Community, gibt es keinerlei Verpflichtung, einen detaillierten Steckbrief für euren Charakter zu erstellen. Ihr müsst keine vorgegebenen Felder ausfüllen oder bestimmte Informationen preisgeben. Stattdessen bitten wir euch lediglich, innerhalb der ersten 24 Stunden ein Profilbild hochzuladen, um euren Charakter visuell darzustellen. Die Entscheidung, ob ihr einen Steckbrief anlegt oder nicht, liegt vollständig bei eurer Idee und Kreativität. Es ist absolut kein Muss.
<br>
<br>
- Wir möchten, dass ihr eure Charaktere auf die Art und Weise darstellt, die euch am besten gefällt. Wir glauben an die Vielfalt der Charaktergestaltung und möchten euch die Freiheit lassen, eure Figuren so zu präsentieren, wie es am besten zu eurer Spielweise und euren Vorstellungen passt. Wir schätzen eure Kreativität und die Art und Weise, wie ihr eure Charaktere in unsere Community einbringt.
</div>
<br>
</div></td></tr></tbody></table><p></p></div></div>
<div class="menu"><input id="menu-2" name="menu-group-1" type="radio"><label for="menu-2">LONDON</label><div class="rules"><p></p><table><tbody><tr><td><div style="width:200px; height:500px; overflow:auto; font-size:9px">
<div style="text-transform:uppercase; font-size:9px; letter-spacing:0.5px; font-weight:bold"><span style="color:#afa396">• Info:</span> <span style="color:#000">London</span></div>
<hr>Tradition und Geschichte sind in London allgegenwärtig. Im historischen Zentrum reiht sich eine Sehenswürdigkeit an die nächste. Traditionen wie die Schlüsselzeremonie im Tower überdauern die rasanten Veränderungen, denen die Stadt ausgesetzt ist.
<br>
<br>Seit dem 18. Jahrhundert wächst die Stadt unaufhörlich. Das explosionsartige Wirtschaftswachstum im 19. Jahrhundert machte London zur größten und reichsten Stadt der Welt. England war Vorreiter der Industrialisierung. Innerhalb nur weniger Jahrzehnte vervielfachte sich die Bevölkerungszahl und London wurde zur größten Stadt der Welt. Durch die zahlreichen britischen Kolonien, die über der ganzen Welt verteilt waren, war London lange Hauptstadt eines riesigen Imperiums.<br>
<br>
Auch heute noch scheint die Stadt an der Themse eine Ansammlung von vielen Dörfern zu sein, ein Flickenteppich, der Vielfalt und Masse bietet. Es gibt weiterhin nicht die eine Londoner Innenstadt, sondern London setzt sich aus vielen unterschiedlichen Stadtteilen zusammen.</div></td>
<td><div style="width:auto; height:500px; overflow:auto; border-left:1px solid #d1d1c5; padding-left:20px; font-size:9px"><center><img src="//files.homepagemodules.de/b915886/a_11_5be16eb4.png" width="35px" height="100px" /> <img src="//files.homepagemodules.de/b915886/a_4_1a8fb554.png"> <img src="//files.homepagemodules.de/b915886/a_3_ac1e7c67.png"> <img src="//files.homepagemodules.de/b915886/a_5_50ff676e.png"> <img src="//files.homepagemodules.de/b915886/a_13_ca8e469a.png"> <img src="//files.homepagemodules.de/b915886/a_7_255c1a2e.png"> <img src="//files.homepagemodules.de/b915886/a_6_0a9ef0c8.png"> <img src="//files.homepagemodules.de/b915886/a_12_6cfc2b88.png" width="35px" height="100px" /></center>
<br>
<div style="font-size:9px">London ist einfach zu groß, zu vielseitig und zu spannend, um sich nur auf einen von Londons Stadtteilen zu konzentrieren. Wer einen Ausflug in die Metropole macht, sollte sich nicht nur die bekanntesten Sehenswürdigkeiten anschauen, sondern auch durch die Viertel schlendern und in den Rhythmus der britischen Hauptstadt und seiner Bewohner eintauchen.<br><br>
Londons Stadtteile sind absolut einzigartig und versprühen ein ganz besonderes Flair. Für jeden Geschmack ist etwas dabei – egal ob der Tourist nach einem multikulturellen Viertel sucht oder sich die schicken Villen der High Society anschauen möchte. Ein beliebter Anlaufpunkt mitten im Zentrum ist der quirlige Londoner Stadtteil Covent Garden. Das Leben spielt sich rund um den Covent Garden Piazza und die dazugehörigen Markthallen ab, unter deren Dächern kleine Shops, kleine Cafés und Bars untergebracht sind. Auch das London Transport Museum befindet sich direkt um‘s Eck. Wer unter den Augen der zahlreichen Straßenkünstler durch die kleinen Gässchen spaziert, gelangt auch zum Royal Opera House, der bedeutendsten Oper Großbritanniens.</div>
<br><br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Camden</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Camden hat ein Image als das Szeneviertel Londons, auch wenn es in den vergangenen Jahren etwas an Glanz verloren hat. Eine goldene Zeit erlebte Camden in der Hochphase des Britpop, weil hier das wichtigste Zentrum dieser Musikrichtung lag. Den Status als Szeneviertel mit hervorragenden Clubs und Pubs hat sich Camden aber bis heute bewahrt.
<br><br>
<b>Highlights:</b> Camden Market, British Museum, Primrose Hill, Hampstead Heath, Charles Dickens Museum, Highgate Cemetry, Kings Cross, Covent Garden</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">City of Westminster
</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Hier liegt das Herz der Stadt. Big Ben, Buckingham Palace, die Parlamentsgebäude, Westminster Abbey, viele der bekanntesten Sehenswürdigkeiten der britischen Hauptstadt findet ihr in der City of Westminster auf engstem Raum konzentriert.
Der Ursprung dieses Stadtteils ist die Westminster Abbey. Als Zentrum der spirituellen, aber auch der politischen Macht spielt die Gegend um die alte Abtei schon seit 1000 Jahren eine bedeutende Rolle. Auch heute noch werden in der Abbey die englischen Könige gekrönt.
Während in der City gearbeitet wird, sind in Westminster die Politik und Kultur zu Hause. Diese Aufgabenteilung zwischen den Stadtvierteln auch heute noch allerorten anzutreffen.
Im Bereich Belgravia siedelten sich nach dem Zweiten Weltkrieg vielen Botschaften und andere wichtige Institutionen an. Belgravia zählt heute zu den wohlhabendsten Wohngegenden Londons.
<br><br>
<b>Highlights:</b>Big Ben, Buckingham Palace, Houses of Parliament, Westminster Abbey, Trafalgar Square, Downing Street, National Gallery, Soho</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">City of London
</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Die City of London ist der kleinste Londoner Stadtteil. Doch obwohl hier offiziell nur noch etwas mehr als 7.600 Menschen wohnen und ist der Stadtteil das wirtschaftliche Herz Londons. Und wohl gerade deshalb pulsiert hier an den Arbeitstagen das Leben. Banker und Broker bestimmen dann das Bild an einem der größten Finanzplätze der Welt.
Begrenzt wird die City im Westen von Westminster, im Norden durch Camden, Islington und Hackney, sowie im Osten durch Tower Hamlets, wo auch die Tower Bridge zu finden ist, die nicht mehr zur City gehört. Im Süden markieren die Themse und Southwark die Grenzen des Bezirks.
Trotz der relativ geringen Größe gibt es in der geschichtsträchtigen City doch einige Sehenswürdigkeiten zu bewundern, die für Besucher der britischen Hauptstadt von Interesse sind.
St. Paul’s Cathedral gehört neben der Westminster Abbey, die im benachbarten Westminster zu finden ist, zu den berühmtesten Kirchen des Landes. Zahlreiche berühmte Persönlichkeiten fanden in St. Paul ihre letzte Ruhestätte. Die Bank of England, das Museum of London und das berühmt-berüchtigte traditionsreiche Gerichtsgebäude Old Bailey, in dem die spektakulärsten Kriminalfälle des United Kingdom verhandelt worden sind, befinden sich ebenfalls auf dem Boden der City.
Neben den beeindruckenden Zeugen der Vergangenheit, die in der City zu bewundern sind, gehören zahlreiche Märkte zu den Dingen, die einen Besuch in der City einen Besuch wert sind. In Clerkenwell wird in erstklassigen Restaurants das beste Essen der Stadt serviert.
<br><br>
<b>Highlights:</b>: St. Paul’s Cathedral, Bank of England, Museum of London</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Greenwich</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Von der Tower Bridge sind es etwa 7 km themseabwärts bis Greenwich. Schon die Anreise bietet euch ein Highlight. Von der DLR Island Garden könnt ihr durch den 365m langen Greenwich Foot Tunnel unter der Themse durch in dieses Stadtviertel spazieren. Greenwich ist wohl einer der grünsten Stadtbezirke von London.
Bekannt ist Greenwich wohl am ehesten für den Nullmeridian sowie die Greenwich Meantime, die zwischen 1884 und 1928 der Maßstab für die Weltzeit war. Vielen ist sicherlich auch das alte Segelschiff Cutty Sark ein Begriff. Der alte Klipper steht seit 1954 in Greenwich und ist Magnet für Besucher.
<br><br>
<b>Highlights:</b>Cutty Sark, Nullmeridian, Foot Tunnel, Royal Maritime Museum, Greenwich Park, Queen’s House, Royal Greenwich Observatory</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Hackney</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Hackney erstreckt sich im Nordosten der City of London auf einer Fläche von über 19 Quadratkilometern und zählt mehr als 212.000 Einwohner. Lange galt es als Armenhaus von London. Doch in den vergangenen Jahren entwickelte sich dieser Stadtteil immer mehr zum angesagten Szeneviertel für Künstler und Galeristen. Zahlreiche Galerien findet ihr in der Vyner Street. Die Bandbreite der Künste reicht von Comicillustrationen bis hin zu Videoinstallationen.
Shoreditch ist ein Ortsteil in Hackney und zählte zu den ärmeren Gegenden von London, wird aber auch als Trendstadtteil gehandelt. Denn die vielen verfallenen Häuser werden aufwendig saniert. So unterhält die Nachrichtenagentur Reuters dort eine Niederlassung. Die einstmals zwielichtige Kneipenszene wandelte sich inzwischen zu gepflegten In-Restaurants.
<br><br>
<b>Highlights:</b>Broadway Market, Shoreditch</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Hammersmith and Fulham
</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Westlich des Londoner Zentrums liegt der 16,4 Quadratkilometer große Stadtbezirk Hammersmith. Etwa 1.720.000 Menschen leben in Hammersmith. Entstanden ist der heutige Stadtbezirk 1965 durch den Zusammenschluss der früheren Verwaltungseinheiten Hammersmith und Fulham.
Bekannt ist wohl vielen der FC Chelsea, ein erfolgreicher Verein der britischen Premier League. Eine Stadionbesichtigung ist hier sicherlich interessant.
Im Stadtteil Shepherd´s Bush liegt nur etwa acht Kilometer von der Innenstadt der mehr als drei Hektar große Park Shepherd´s Bush Green. Weit über die Grenzen von Hammersmith hinaus bekannt ist das Einkaufszentrum Westfield London.
<br><br>
<b>Highlights:</b>Stadion Chelsea, Westfield Centre</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Islington</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Im Süden grenzt der Stadtbezirk Islington an die City of London an.
Islington liegt außerhalb der klassischen Touristenplätze und ist gerade deshalb einen Besuch wert. Denn hier könnt ihr London von seiner „normalen“ Seite erleben. Und das hat irgendwie ganz besonderen Charme. Nirgendwo sonst in London leben Arm und Reich so eng nebeneinander wie in Islington. Deshalb glänzt dieser Stadtbezirk mit einer bunten Vielfalt, aufgrund der unterschiedlichen Herkunftsländern und Kulturen seiner Bewohner.
In der etwas versteckt liegenden Camden Passage befinden sich Antik- und Trödelläden. Aber auch Vintage-Kleidung, Künstlerbedarf, Graphiken, Drucke, Fotografien von Rockstars vergangener Jahre und biologische Lebensmittel könnt ihr in Islington bekommen.
Das Emirates Stadium ist das Fußballstadion des englischen Erstligisten FC Arsenal und wohl für Fussballfans ein Besuch wert.
Aber auch Theaterfreunde kommen in Islington auf ihre Kosten. Wer Bier und Theater kombinieren möchte sollte sich den Pub The Old Red Lion anschauen.
<br><br>
<b>Highlights:</b>Camden Passage, Emirates Stadium, The Old Red Lion, Hen and Chickens Theatre</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Kensington and Chelsea
</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Der Stadtbezirk Kensington und Chelsea zählt zu den besten Vierteln Londons, obwohl er die kleinste und zugleich am dichtesten besiedelte Verwaltungseinheit Großbritanniens ist.
Hier reihen sich die Sehenswürdigkeiten quasi aneinander. Neben den unzähligen hochklassigen Einkaufsmöglichkeiten wie Harrods und Harvey Nichols ist dieser Stadtteil geprägt vom Hyde Park mit seinen großzügigen Grünanlagen. Berühmt ist Kensington für den Kensington Palace und die Kensington Gardens, einem der königlichen Parks. Zudem findet ihr im Museumsviertel (Science, Natural History, Royal & Albert) zu dem auch die Royal Albert Hall gehört zahlreiche Sehenswürdigkeiten der Besuch sich gerade bei schlechtem Wetter lohnt.
In Notting Hill ist alljährlich im August der Notting Hill Carnival. Diese mehrtägige Veranstaltung lockt bis zu 1,5 Millionen Schaulustige und Teilnehmer an. Aber auch sonst ist die Gegend rund um die Portobello Road einen Besuch wert.
<br><br>
<b>Highlights:</b>Harrods, Hyde Park, Kensington Palace, Museumsviertel, Portobello Road</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Lambeth</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Lambeth North liegt auf der Südseite der Themse. Während früher eher die nördlichen Stadtviertel interessant waren, hat sich mittlerweile auch der Süden ganz schön rausgeputzt. Lambeth ist so ein Viertel. Einst war dies ein unerschlossenes und schlammiges Gebiet. Danach wohnten nur Erzbischöfe hier. Heute ist Lambeth ein mehr als lohnenswertes Ziel mit etlichen Sehenswürdigkeiten und schönen Parks wie den Archbishop’s Park oder den Geraldine Mary Harmsworth Park. Die London Waterloo Station in Lambeth ist einer der wichtigsten Bahnhöfe Londons.
<br><br>
<b>Highlights:</b>Imperial War Museum, Lambeth Palace, Museum Of Garden History, Florence Nightingale Museum, Waterloo Station</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Southwark</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Direkt im Süden der City of London liegt der Stadtbezirk Southwark. Hier findet ihr viele der bekannten Londoner Sehenswürdigkeiten wie die Tower Bridge, die Southwark Cathedral und die St. George’s Cathedral.
<br><br>
<b>Highlights:</b>Tower Bridge, Design Museum, Butlers Wharf,
</div>
<br>
<span style="display:block; width:150px; text-align:center; background-color: #f3f3f3; margin-left:30px; margin-bottom:4px; padding: 3px 10px 3px 10px; font-size:9.5px; font-weight:bold; text-transform:uppercase; color:#000;">Tower Hamlets
</span>
<div style="background-color:#f3f3f3; padding:15px; font-size:11px">Östlich der City of London liegt der Stadtbezirk Tower Hamlets. Neben dem namensgebenden Tower of London findet ihr am Rande der Stadt viele weitere Sehenswürdigkeiten. Weil sich ein Großteil der Docklands in Tower Hamlets befindet, gilt dieser Stadtbezirk als klassisches Arbeiterviertel. Seit die Modernisierung des Bereiches begonnen hat kommen immer mehr Studenten und Künstler in die Gegend, da es hier noch halbwegs bezahlbaren Wohnraum gibt.
Zur Erkundung dieses relativ großen Stadtviertel empfiehlt sich die Fahrradtour 1 vom Tower zum Canary Wharf.
<br><br>
<b>Highlights:</b> Tower of London, St. Katherine Docks, Canary Wharf</div>
<br>
</div></td></tr></tbody></table><p></p></div></div>
<div class="menu"><input id="menu-6" name="menu-group-1" type="radio"><label for="menu-6">STUDIUM & ARBEIT</label><div class="rules"><p>Hier findest du all unsere Arbeitsplätze die freie stellen anzubieten haben oder bereits bis unter's Dach besetzt sind. Arbeitsstellen in denen nur eine bis zwei Personen arbeiten können stehen nicht in dieser Liste aber können auf Wunsch und per Absprache mit einem Team Mitglied noch nachgetragen werden.
<br><br>
</p><center><table><tbody><tr><td><div style="width:300px; height:500px; overflow:auto; text-align:justify; font-size:11px">
<div style="text-transform:uppercase; font-size:9px; letter-spacing:0.5px; font-weight:bold"><span style="color:#afa396">INNER LODON</span> <span style="color:#000">xxy</span></div>
<hr>
<center><div style="background-color:#955b4a; color:#e2e0d9; font-size:12px"><b> ARGARWIRTSCHAFT <img src="//files.homepagemodules.de/b915886/a_15_e2623a8d.png" width="19px" height="19px" /></b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br><br>
<hr>
<center><div style="background-color:#955b4a; color:#e2e0d9; font-size:9px"><b>Gesundheit</b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br><br>
<hr>
<center><div style="background-color:#e6e6e6; color:#000; font-size:9px"><b>Handwerk</b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Arbeitsplatz • Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br><br>
<br>
</div></td>
<hr>
<td><div style="width:300px; height:500px; overflow:auto; text-align:justify; font-size:11px">
<div style="text-transform:uppercase; font-size:9px; letter-spacing:0.5px; font-weight:bold"><span style="color:#afa396">Inner London</span> <span style="color:#000">xxy</span></div>
<hr>
<center><div style="background-color:#e6e6e6; color:#000; font-size:12px"><b>  BILDUNG <img src="//files.homepagemodules.de/b915886/a_16_6d2c8991.png" width="19px" height="19px" /></b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br><br>
<hr>
<center><div style="background-color:#955b4a; color:#e2e0d9; font-size:9px"><b>Verwaltung</b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br>
</div></td>
<td><div style="width:300px; height:500px; overflow:auto; text-align:justify; font-size:11px">
<div style="text-transform:uppercase; font-size:9px; letter-spacing:0.5px; font-weight:bold"><span style="color:#afa396">Outer London</span> <span style="color:#000">xxy</span></div>
<hr>
<center><div style="background-color:#955b4a; color:#e2e0d9; font-size:12px"><b>Dienstleistung</b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br><br>
<hr>
<center><div style="background-color:#955b4a; color:#e2e0d9; font-size:9px"><b>Einzelhandel</b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br><br>
<hr>
<center><div style="background-color:#955b4a; color:#e2e0d9; font-size:9px"><b>Gastronomie</b></div>
<span style="text-transform:uppercase; font-size:8.5px">• • •</span></center>
<span style="text-transform:uppercase; font-size:9px; font-weight:bold">» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position<br><br>
» NAME NAME<br>
Position
<br><br>
<hr>
<br>
<br>
</div></td></tr></tbody></table><p></p></center></div></div>
<br>
<p></p></div></div>
</div></div></div>
</div>
</div>
<div style="clear: both;"></div>
<div class="c_r_bottom1">
<div></div>
</div>
</div>
nach oben springen


0 Citizen und 17 Ghost's sind Online |
![]() ![]() Besucherzähler Heute waren 17 Ghost's, gestern 20 Ghost's online |
|
![]() | Forum Software von Xobor Einfach ein eigenes Forum erstellen |