MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung |
Keine Bearbeitungszusammenfassung |
||
Zeile 6: | Zeile 6: | ||
*/ | */ | ||
body { | /* Seite bis CSS & JS geladen sind unsichtbar halten */ | ||
html:not(.client-js) body { | |||
opacity: 0; | opacity: 0; | ||
} | } | ||
/* Sichtbar, sobald JS läuft */ | |||
html.client-js body { | |||
opacity: 1; | opacity: 1; | ||
transition: opacity 0.3s ease; | |||
} | } | ||
Version vom 17. Juli 2025, 14:36 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ /*:root { --background-color-base: #B1D236; } Das wäre cool mit Variablen macht aber Textfelder komisch */ /* Seite bis CSS & JS geladen sind unsichtbar halten */ html:not(.client-js) body { opacity: 0; } /* Sichtbar, sobald JS läuft */ html.client-js body { opacity: 1; transition: opacity 0.3s ease; } body{ color:#143666; background-color: #a6d71c; } #mw-page-base{ background-image:none; background-color: #a6d71c; color:#143666; } #content{ background-color:#fff; color: #222; } .mw-body-content h2{ color:#143666; font-family: 'Roboto',sans-serif; font-weight:500; } .mw-body h1{ color:#143666; font-family: 'Roboto',sans-serif; font-weight:700; } /* JBH Farben: #a6d71c neonlimette #143666 blau #FFFFFF weiß */