MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Suikopedia
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Zeile 8: Zeile 8:
/* Desktop: feste Breite, rechtsbündig */
/* Desktop: feste Breite, rechtsbündig */
.charakter-infobox {
.charakter-infobox {
    width: 100%;
}
.charakter-infobox-wrapper {
     width: 30%;
     width: 30%;
    float: right;
    margin: 0 0 1em 1em;
}
}


/* Mobile/Timeless: volle Breite, kein Float */
@media screen and (max-width: 851px) {
@media screen and (max-width: 851px) {
     .charakter-infobox {
     .charakter-infobox-wrapper {
         width: 100% !important;
         width: 100% !important;
         float: none !important;
         float: none !important;

Version vom 4. August 2026, 14:43 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.infobox {
         border: 1px solid #efefef;
         background: #f9f9f9;
         font-size: 90%;
     }
     
/* Desktop: feste Breite, rechtsbündig */
.charakter-infobox {
    width: 100%;
}

.charakter-infobox-wrapper {
    width: 30%;
    float: right;
    margin: 0 0 1em 1em;
}

@media screen and (max-width: 851px) {
    .charakter-infobox-wrapper {
        width: 100% !important;
        float: none !important;
        margin: 0 0 1em 0 !important;
    }
}