MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus EnMo_Handbuch
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Zeile 36: Zeile 36:
}
}
body {
body {
     font-size: 12px !important;
     font-size: 2rem !important;
}
}

Version vom 24. Februar 2025, 16:31 Uhr

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


a:hover {
  color: #15a2d6;
}

a.external:hover {
  color: #15a2d6;
}

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

body {
    font-family: 'Titillium Web', sans-serif;
}

h1,h2,h3,h4 {
    font-family: 'Titillium Web', sans-serif !important;
}


/* Bilder responsive machen*/
.mw-file-element {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
}


/* Auf mobilen Geräten wird die Navigation komplett ausgeblendet */
@media screen and (max-width: 900px) {
    #mw-navigation{
        display: none !important; /* Verstecke die Navigation */
    }
}
body {
    font-size: 2rem !important;
}