Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
<!DOCTYPE html> | <!DOCTYPE html> | ||
<html lang="de"> | |||
<head> | |||
<meta charset="UTF-8"> | |||
<title>Wiki – Startseite</title> | |||
<style> | |||
:root { | |||
--bg: #1e1e2e; | |||
--surface: #313244; | |||
--text: #cdd6f4; | |||
--accent: #fab387; | |||
--border: #45475a; | |||
} | |||
* { margin: 0; padding: 0; box-sizing: border-box; } | |||
body { | |||
font-family: 'Segoe UI', system-ui, sans-serif; | |||
background-color: var(--bg); | |||
color: var(--text); | |||
min-height: 100vh; | |||
padding: 32px; | |||
} | |||
h1 { | |||
text-align: center; | |||
font-size: 2rem; | |||
margin-bottom: 28px; | |||
color: var(--accent); | |||
} | |||
.grid { | |||
display: grid; | |||
grid-template-columns: repeat(3, 1fr); | |||
gap: 16px; | |||
max-width: 960px; | |||
margin: 0 auto; | |||
} | |||
@media (max-width: 720px) { | |||
.grid { grid-template-columns: 1fr; } | |||
} | |||
.tile { | |||
background-color: var(--surface); | |||
border: 1px solid var(--border); | |||
border-radius: 10px; | |||
padding: 24px; | |||
transition: transform 0.2s ease, box-shadow 0.2s ease; | |||
} | |||
.tile:hover { | |||
transform: translateY(-3px); | |||
box-shadow: 0 6px 20px rgba(0,0,0,0.4); | |||
} | |||
.tile h2 { | |||
color: var(--accent); | |||
font-size: 1.3rem; | |||
margin-bottom: 8px; | |||
} | |||
.tile p { | |||
font-size: 0.95em; | |||
line-height: 1.6; | |||
} | |||
ul { padding-left: 20px; } | |||
li { margin-top: 4px; } | |||
</style> | |||
</head> | |||
<body> | |||
<h1>Wiki – Startseite</h1> | |||
<div class="grid"> | |||
<!-- Kachel 1 --> | |||
<div class="tile"> | |||
<h2>👨👩👧👦 Hilfe für Papa</h2> | |||
<p>Einfache Anleitungen für Computer und Handy:</p> | |||
<ul> | |||
<li>Wie mache ich ein Update?</li> | |||
<li>Wie bediene ich ein Programm am PC?</li> | |||
<li>Wie installiere ich eine App auf dem Handy?</li> | |||
<li>Wie bediene ich ein Smartphone?</li> | |||
</ul> | |||
</div> | |||
<!-- Kachel 2 --> | |||
<div class="tile"> | |||
<h2>🔧 Gelöste Probleme</h2> | |||
<p>Eine Sammlung von Fehlern und ihren Lösungen — gut zum Nachschlagen für mich und zum Erklären für andere.</p> | |||
</div> | |||
<!-- Kachel 3 --> | |||
<div class="tile"> | |||
<h2>🏃♂️ Wettkämpfe</h2> | |||
<p>Unsere offiziellen Wettkampfergebnisse und Laufzeiten — von Friedemann und Flavius, Saison für Saison.</p> | |||
</div> | |||
<!-- Kachel 4 --> | |||
<div class="tile"> | |||
<h2>🖥️ Server & Infrastruktur</h2> | |||
<ul> | |||
<li><strong>Storage Box:</strong> rclone, Sub-Accounts, Snapshots</li> | |||
<li><strong>Entertainment:</strong> Jellyfin, Immich, Grafana, NPM</li> | |||
<li><strong>lets-lounge:</strong> Gameserver, JDownloader</li> | |||
<li><strong>Server WG 49:</strong> Home Assistant (Klima), AdGuard Home (DNS)</li> | |||
<li><strong>Desktop:</strong> openSUSE Tumbleweed, Niri</li> | |||
</ul> | |||
</div> | |||
<!-- Kachel 5 --> | |||
<div class="tile"> | |||
<h2>🗣️ Erklärt für Freunde</h2> | |||
<p>Einfache Erklärungen von technischen Themen, die ich öfter erklären muss.</p> | |||
</div> | |||
</div> | |||
</body> | |||
</html> | |||
Version vom 28. Juni 2026, 14:27 Uhr
<!DOCTYPE html> <html lang="de"> <head>
<meta charset="UTF-8">
<title>Wiki – Startseite</title>
<style>
:root {
--bg: #1e1e2e;
--surface: #313244;
--text: #cdd6f4;
--accent: #fab387;
--border: #45475a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', system-ui, sans-serif;
background-color: var(--bg);
color: var(--text);
min-height: 100vh;
padding: 32px;
}
h1 {
text-align: center;
font-size: 2rem;
margin-bottom: 28px;
color: var(--accent);
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
max-width: 960px;
margin: 0 auto;
}
@media (max-width: 720px) {
.grid { grid-template-columns: 1fr; }
}
.tile {
background-color: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
padding: 24px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.tile h2 {
color: var(--accent);
font-size: 1.3rem;
margin-bottom: 8px;
}
.tile p {
font-size: 0.95em;
line-height: 1.6;
}
ul { padding-left: 20px; }
li { margin-top: 4px; }
</style>
</head> <body>
Wiki – Startseite
👨👩👧👦 Hilfe für Papa
Einfache Anleitungen für Computer und Handy:
- Wie mache ich ein Update?
- Wie bediene ich ein Programm am PC?
- Wie installiere ich eine App auf dem Handy?
- Wie bediene ich ein Smartphone?
🔧 Gelöste Probleme
Eine Sammlung von Fehlern und ihren Lösungen — gut zum Nachschlagen für mich und zum Erklären für andere.
🏃♂️ Wettkämpfe
Unsere offiziellen Wettkampfergebnisse und Laufzeiten — von Friedemann und Flavius, Saison für Saison.
🖥️ Server & Infrastruktur
- Storage Box: rclone, Sub-Accounts, Snapshots
- Entertainment: Jellyfin, Immich, Grafana, NPM
- lets-lounge: Gameserver, JDownloader
- Server WG 49: Home Assistant (Klima), AdGuard Home (DNS)
- Desktop: openSUSE Tumbleweed, Niri
🗣️ Erklärt für Freunde
Einfache Erklärungen von technischen Themen, die ich öfter erklären muss.
</body> </html>