Zum Inhalt springen

MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus SocialOffice Dokumentation
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.mw-logo-container {
@media all {
width: 150px;
.mw-logo-container {
height: 50px;
  width: 100px;
background-image: url("/resources/assets/logo_text.png");
  height: 50px;
background-size: 150px;
  background-image: url("/resources/assets/logo_text.png");
background-repeat: no-repeat;
  background-repeat: no-repeat;
background-position-y: 4px;
  background-size: 100px;
}
  background-position-y: 10px;
}


.mw-logo-container > strong {
.mw-logo-container > strong {
display: none;
  display: none;
}
}
}


.mw-logo-icon[aria-hidden] + .mw-logo-container {
@media (min-width: 640px) {
    background-size: 50px;
.mw-logo-container {
  width: 150px;
  height: 50px;
  background-size: 150px;
  background-position-y: 4px;
}
}
}

Aktuelle Version vom 31. Oktober 2025, 17:57 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: 10px;
 }

 .mw-logo-container > strong {
  display: none;
 }
}

@media (min-width: 640px) {
 .mw-logo-container {
  width: 150px;
  height: 50px;
  background-size: 150px;
  background-position-y: 4px;
 }
}