MediaWiki:Timeless.css: Unterschied zwischen den Versionen

Aus Transfusionshandbuch
Die Seite wurde neu angelegt: „→‎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; }“
 
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
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 {
     position: relative;
     max-height: 150px; /* Maximale Höhe für den Footer */
     bottom: 0;
     overflow: auto;   /* Scrollen aktivieren, falls mehr Inhalt vorhanden ist */
    width: 100%;
    padding: 10px;
}
}

Version vom 28. Oktober 2024, 13:50 Uhr

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

#footer {
    max-height: 150px; /* Maximale Höhe für den Footer */
    overflow: auto;    /* Scrollen aktivieren, falls mehr Inhalt vorhanden ist */
}