MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 9: | Zeile 9: | ||
visibility: visible; | visibility: visible; | ||
opacity: 0; | opacity: 0; | ||
animation: fade-in 0. | animation: fade-in 0.4s forwards; | ||
animation-timing-function: cubic-bezier(0, 0, 0.9, 1); | animation-timing-function: cubic-bezier(0, 0, 0.9, 1); | ||
} | } | ||
| Zeile 17: | Zeile 17: | ||
opacity: 0; | opacity: 0; | ||
} | } | ||
70% { | |||
opacity: 0; | opacity: 0; | ||
} | } | ||
Version vom 17. Juli 2025, 14:42 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
*/
html.client-js body {
visibility: visible;
opacity: 0;
animation: fade-in 0.4s forwards;
animation-timing-function: cubic-bezier(0, 0, 0.9, 1);
}
@keyframes fade-in {
0% {
opacity: 0;
}
70% {
opacity: 0;
}
100% {
opacity: 1;
}
}
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ß
*/