MediaWiki:Common.css: Unterschied zwischen den Versionen
MediaWiki-Schnittstellenseite
Weitere Optionen
Kevkus (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Kevkus (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | /* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | ||
/* Globaler atmosphärischer Hintergrund */ | |||
body { | body { | ||
background- | background: | ||
radial-gradient(circle at center, rgba(8, 10, 16, 0.92) 0%, rgba(5, 7, 12, 0.98) 45%, rgba(2, 3, 6, 1) 100%), | |||
url("/images/backgrounds/onos-arcane-map.webp"); | |||
background-size: cover; | background-size: cover; | ||
background-position: center top; | background-position: center top; | ||
background-attachment: fixed; | background-attachment: fixed; | ||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
} | |||
/* Lesebereich ruhig halten */ | |||
#content, | |||
.mw-body, | |||
.citizen-body, | |||
.citizen-page-container { | |||
background-color: rgba(5, 7, 12, 0.72); | |||
backdrop-filter: blur(2px); | |||
} | |||
/* Tabellen etwas stärker absetzen */ | |||
.wikitable, | |||
.citizen-table, | |||
table { | |||
background-color: rgba(6, 8, 14, 0.88); | |||
} | |||
/* Hauptseite darf etwas mehr Hero-Feeling haben */ | |||
.page-Hauptseite body, | |||
body.page-Hauptseite { | |||
background: | |||
radial-gradient(circle at center, rgba(7, 9, 14, 0.65) 0%, rgba(3, 4, 8, 0.95) 65%, rgba(0, 0, 0, 1) 100%), | |||
url("/images/backgrounds/onos-home-hero.webp"); | |||
background-size: cover; | |||
background-position: center top; | |||
background-attachment: fixed; | |||
} | } | ||
Version vom 31. Mai 2026, 18:07 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* Globaler atmosphärischer Hintergrund */
body {
background:
radial-gradient(circle at center, rgba(8, 10, 16, 0.92) 0%, rgba(5, 7, 12, 0.98) 45%, rgba(2, 3, 6, 1) 100%),
url("/images/backgrounds/onos-arcane-map.webp");
background-size: cover;
background-position: center top;
background-attachment: fixed;
background-repeat: no-repeat;
}
/* Lesebereich ruhig halten */
#content,
.mw-body,
.citizen-body,
.citizen-page-container {
background-color: rgba(5, 7, 12, 0.72);
backdrop-filter: blur(2px);
}
/* Tabellen etwas stärker absetzen */
.wikitable,
.citizen-table,
table {
background-color: rgba(6, 8, 14, 0.88);
}
/* Hauptseite darf etwas mehr Hero-Feeling haben */
.page-Hauptseite body,
body.page-Hauptseite {
background:
radial-gradient(circle at center, rgba(7, 9, 14, 0.65) 0%, rgba(3, 4, 8, 0.95) 65%, rgba(0, 0, 0, 1) 100%),
url("/images/backgrounds/onos-home-hero.webp");
background-size: cover;
background-position: center top;
background-attachment: fixed;
}