Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 55: Zeile 55:
     .content table td,
     .content table td,
     .mw-parser-output table td {
     .mw-parser-output table td {
         flex: 1 1 45% !important; /* Falls 30% zu klein ist, teste 45% */
         flex: 1 1 45% !important;
         max-width: 45% !important;
         max-width: 45% !important;
         text-align: center !important;
         text-align: center !important;
     }
     }
}
}


.content kbd, .content samp, .content code, .content pre {
.content kbd, .content samp, .content code, .content pre {
     border-radius: 7px;
     border-radius: 7px;
}
}

Version vom 17. März 2025, 02:29 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

.mw-body h1, h1.firstHeading,
.mw-body h2,
.mw-body h3,
.mw-body h4 {
  font-family: 'Noto Sans', sans-serif !important;
  font-weight: 400; /* Standardgewicht */
}

/* Fette Varianten in Überschriften (z.B. in <strong> oder <b>) */
.mw-body h1 strong, .mw-body h1 b,
.mw-body h2 strong, .mw-body h2 b,
.mw-body h3 strong, .mw-body h3 b,
.mw-body h4 strong, .mw-body h4 b {
  font-weight: 700 !important;
}

.content p {
    margin: 1.5em 0 1.5em 0;
}

.vector-body p {
    margin: 1.5em 0 1.5em 0;
}

hr {
    margin-top: 1.9rem;
}

@media (max-width: 639px) {
    .content table,
    .mw-parser-output table {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        margin: 0 auto;
        overflow: visible !important;
        max-width: 100% !important;
    }

    .content table tr,
    .mw-parser-output table tr {
        display: flex !important;
        flex-wrap: wrap;
        width: 100% !important;
        justify-content: center;
    }

    .content table td,
    .mw-parser-output table td {
        flex: 1 1 45% !important;
        max-width: 45% !important;
        text-align: center !important;
    }
}

.content kbd, .content samp, .content code, .content pre {
    border-radius: 7px;
}