-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
98 lines (94 loc) · 3.27 KB
/
index.html
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
<!doctype html>
<html lang="de"><head>
<meta charset="utf-8" />
<!-- we can do both, but favour light -->
<meta name="color-scheme" content="light dark">
<style>
html {
font-size: 16px;
line-height: 1.7em;
}
body {
padding: 20px;
}
body > * {
max-width: 800px;
margin: 0 auto;
padding: 20px 0;
border-bottom: 2px solid #ccc;
}
img {
max-width: 100%;
}
a {
color: #36c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.rainbow {
color: #f00;
font-style: normal;
font-size: 30px;
font-weight: bold;
-webkit-animation: bunt 5s infinite; /* Safari 4.0 - 8.0 */
animation: bunt 5s infinite;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes bunt {
17% {color: #990;}
34% {color: #0f0;}
51% {color: #099;}
68% {color: #00f;}
85% {color: #909;}
}
@keyframes bunt {
17% {color: #990;}
34% {color: #0f0;}
51% {color: #099;}
68% {color: #00f;}
85% {color: #909;}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #333;
color: #ccc;
}
img {
-webkit-filter: invert(0.8);
-ms-filter: "progid:DXImageTransform.Microsoft.Invert(0.8)";
filter: invert(0.8);
}
}
</style>
<title>chaos.jetzt - Junges Chaos Bildet Banden</title>
</head><body>
<header>
<h1>chaos.jetzt</h1>
</header>
<main>
<img src="https://chaostreff-flensburg.de/wp-content/uploads/2019/08/junges-chaos-bildet-banden-schriftzug.png" alt="Junges Chaos bildet Banden" role="heading" aria-level="2">
<p class="rainbow">Wir sind junge Menschen im Chaos-Umfeld - komm und mach mit!</p>
<ul>
<li><a href="https://mailtrain.chaostreff-flensburg.de/subscription/BJ416YaES">Newsletter abonnieren</a> (E-Mail Adresse reicht)</li>
<li>Folge uns auf <a href="https://twitter.com/chaos_jetzt">Twitter</a> oder <a href="https://chaos.social/@jetzt">Mastodon</a></li>
<li><a href="https://md.ctfl.space/s/jcbb">Protokoll vom ersten Treffen</a></li>
<li><a href="https://wiki.chaos.jetzt">Wiki</a></li>
<li><a href="https://cloud.chaostreff-flensburg.de/apps/calendar/p/xkq5ci7YPoN8m96d/dayGridMonth/now">Kalender</a> für eine Übersicht über die nächsten Dinge, die bei uns passieren.</li>
<li>Zur Kommunikation gibt es einen <a href="https://chat.chaos.jetzt">Matrix-Server</a>. Am besten trittst du dort unserem <a href="https://matrix.to/#/#chaos.jetzt:chaos.jetzt" target="_blank">Chaos.Jetzt Space</a> bei!
Das geht natürlich auch ohne Account auf unserem Server.
<ul>
<li>
Mit einigen Räumen sind wir auch im Hackint-IRC vertreten: #chaos-jetzt, #chaos-jetzt_alte-leute-lounge</li>
</li>
</ul>
<li>Wir suchen junge Menschen, die Bock haben, Sachen zu organisieren.</li>
</ul>
<h2>Zielgruppe</h2>
<p>Kern-Zielgruppe: 14-18 Jährige; erweiterte Zielgruppe: 18 - 25 Jährige; Selten: 26 & 27 Jährige</p>
</main>
<footer>
<a href="https://chaostreff-flensburg.de/impressum/">Impressum</a> | <a href="https://chaostreff-flensburg.de/datenschutz/">Datenschutz</a> | <a href="https://md.ctfl.space/s/chaos.jetzt-coc">Code of Conduct</a>
</footer>
</body></html>