diff --git a/index.html b/index.html index 4653df9..aaba958 100644 --- a/index.html +++ b/index.html @@ -48,6 +48,38 @@ +
+

Fakten

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Geboren28. Dezember 1969
GeburtsortHelsinki, Finnland
NationalitätFinnisch
Bekannt fürLinux-Kernel, Git
Erstes Linux-Release1991
RolleMaintainer / Projektinitiator
+
+

Zeitleiste

    diff --git a/style.css b/style.css index 4d676f2..14be87a 100644 --- a/style.css +++ b/style.css @@ -141,6 +141,43 @@ body { font-size: 0.9rem; } +/* Facts table */ +.facts { + margin-top: 18px; +} +.facts-table { + width: 100%; + max-width: 640px; + border-collapse: collapse; + margin: 12px 0 0; + background: var(--card); + color: var(--fg); + border-radius: 8px; + overflow: hidden; +} +.facts-table th, +.facts-table td { + padding: 12px 14px; + text-align: left; + border-bottom: 1px solid rgba(255,255,255,0.03); + font-size: 0.98rem; +} +.facts-table th { + width: 36%; + color: var(--muted); + font-weight: 600; + background: rgba(255,255,255,0.02); +} +.facts-table tr:last-child td { + border-bottom: none; +} + +@media (max-width: 720px) { + .facts-table th { + width: 40%; + } +} + @media (max-width: 720px) { .hero { flex-direction: column;