MediaWiki:Common.css: Unterschied zwischen den Versionen
Erscheinungsbild
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 2: | Zeile 2: | ||
@media all { | @media all { | ||
.mw-logo-container { | .mw-logo-container { | ||
width: | width: 100px; | ||
height: 50px; | height: 50px; | ||
background-image: url("/resources/assets/logo_text.png"); | background-image: url("/resources/assets/logo_text.png"); | ||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
background-size: 100px; | |||
background-position-y: 4px; | background-position-y: 4px; | ||
} | } | ||
| Zeile 17: | Zeile 17: | ||
@media (min-width: 640px) { | @media (min-width: 640px) { | ||
.mw-logo-container { | .mw-logo-container { | ||
width: 150px; | |||
height: 50px; | |||
background-size: 150px; | |||
background-position-y: 4px; | |||
} | } | ||
} | } | ||
Version vom 31. Oktober 2025, 17:56 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@media all {
.mw-logo-container {
width: 100px;
height: 50px;
background-image: url("/resources/assets/logo_text.png");
background-repeat: no-repeat;
background-size: 100px;
background-position-y: 4px;
}
.mw-logo-container > strong {
display: none;
}
}
@media (min-width: 640px) {
.mw-logo-container {
width: 150px;
height: 50px;
background-size: 150px;
background-position-y: 4px;
}
}