MediaWiki:Common.css: Unterschied zwischen den Versionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
||
| Zeile 1.786: | Zeile 1.786: | ||
.kat-links a { display:inline-block; padding:6px 10px; border:1px solid #a2a9b1; border-radius:999px; background:#fff; text-decoration:none; } | .kat-links a { display:inline-block; padding:6px 10px; border:1px solid #a2a9b1; border-radius:999px; background:#fff; text-decoration:none; } | ||
.kat-links a:hover { background:#f8f9fa; } | .kat-links a:hover { background:#f8f9fa; } | ||
/* === ROTES THEMA (Elegant & Glamour) === */ | |||
/* Grundfarben */ | |||
:root { | |||
--wiki-bg: #ffffff; | |||
--wiki-border: #ef9a9a; | |||
--wiki-accent: #b71c1c; | |||
--wiki-gradient: linear-gradient(to right, #ffe5e5, #ffffff); | |||
--wiki-text: #333333; | |||
} | |||
/* Seitenhintergrund */ | |||
body { | |||
background-color: var(--wiki-bg); | |||
color: var(--wiki-text); | |||
} | |||
/* Tabellen (z. B. Infoboxen, Startseite) */ | |||
table { | |||
border: 1px solid var(--wiki-border); | |||
border-radius: 8px; | |||
background-color: var(--wiki-bg); | |||
} | |||
/* Tabellenüberschriften */ | |||
table > caption, | |||
table > thead th, | |||
table > tbody > tr:first-child > th { | |||
background: var(--wiki-gradient); | |||
color: var(--wiki-accent); | |||
font-weight: 700; | |||
} | |||
/* Überschriften */ | |||
h1, h2, h3, h4 { | |||
color: var(--wiki-accent); | |||
} | |||
/* Links */ | |||
a, a:visited { | |||
color: var(--wiki-accent); | |||
} | |||
a:hover { | |||
color: #d32f2f; | |||
} | |||
/* Boxen (z. B. Infoboxen, Custom-Templates) */ | |||
.infobox, | |||
.tablebox { | |||
border: 1px solid var(--wiki-border); | |||
border-radius: 8px; | |||
background-color: var(--wiki-bg); | |||
} | |||
.infobox th, | |||
.tablebox th { | |||
background: var(--wiki-gradient); | |||
color: var(--wiki-accent); | |||
font-weight: bold; | |||
padding: 6px 8px; | |||
} | |||
/* Abgesetzte Sektionen */ | |||
.section-header { | |||
background: var(--wiki-gradient); | |||
color: var(--wiki-accent); | |||
padding: 6px 10px; | |||
border-radius: 4px; | |||
font-weight: bold; | |||
} | |||
/* Kleinere Highlights */ | |||
hr { | |||
border: 0; | |||
border-top: 1px solid var(--wiki-border); | |||
} | |||