MediaWiki:Monobook.css: Unterschied zwischen den Versionen
Aus Wolffiles
Zur Navigation springenZur Suche springen
Wahke (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Wahke (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 10: | Zeile 10: | ||
#content { | #content { | ||
padding-top: 30px; /* Fügt Platz oberhalb des gesamten Inhalts ein */ | |||
} | } | ||
.pBody { | .pBody { | ||
margin-top: | margin-top: 20px; /* Zusätzlicher Abstand direkt vor .pBody */ | ||
} | |||
.pBody::before { | |||
content: ""; | |||
display: block; | |||
height: 10px; /* Zusätzlicher Abstand über ein Pseudo-Element */ | |||
} | } | ||
Version vom 5. Januar 2025, 10:27 Uhr
/* Das folgende CSS wird für Benutzer der Benutzeroberfläche MonoBook geladen */
body {
background-color: #323734;
background-image: url("https://example.com/hintergrundbild.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
#content {
padding-top: 30px; /* Fügt Platz oberhalb des gesamten Inhalts ein */
}
.pBody {
margin-top: 20px; /* Zusätzlicher Abstand direkt vor .pBody */
}
.pBody::before {
content: "";
display: block;
height: 10px; /* Zusätzlicher Abstand über ein Pseudo-Element */
}