MediaWiki:Timeless.css: Unterschied zwischen den Versionen

Aus Transfusionshandbuch
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
Markierung: Manuelle Zurücksetzung
Zeile 1: Zeile 1:
/* All CSS here will be loaded for users of the Timeless skin */
/* All CSS here will be loaded for users of the Timeless skin */
html, body {
    height: 100%; /* Gesamthöhe der Seite nutzen */
}
#content {
    min-height: calc(100vh - 150px); /* Passt den Inhalt an, um Platz für den Footer zu lassen */
}


#footer {
#footer {
     max-height: 300px; /* Maximale Höhe für den Footer */
     position: relative;
     overflow: auto;   /* Scrollen aktivieren, falls mehr Inhalt vorhanden ist */
     bottom: 0;
    width: 100%;
    padding: 10px;
}
}

Version vom 28. Oktober 2024, 13:51 Uhr

/* All CSS here will be loaded for users of the Timeless skin */

html, body {
    height: 100%; /* Gesamthöhe der Seite nutzen */
}

#content {
    min-height: calc(100vh - 150px); /* Passt den Inhalt an, um Platz für den Footer zu lassen */
}

#footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 10px;
}