MediaWiki:Timeless.css: Unterschied zwischen den Versionen

Aus Transfusionshandbuch
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
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{
/* HTML- und Body-Bereich verwenden den gesamten Bildschirm */
  position:relative;  
html, body {
  min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}
}
/*Normalize html and body elements,this style is just good to have*/
 
html,body{
/* Inhaltsbereich zwischen Kopf- und Fußzeile strecken */
  margin:0;
#content {
  padding:0;
    flex: 1;
    padding-bottom: 20px; /* Optionaler Abstand für den Footer */
}
}
.pageContentWrapper{
 
  margin-bottom:100px;/* Height of footer*/
/* Footer bleibt unten bei wenig Inhalt */
}
#footer {
.footer{
     background-color: #f9f9f9;
     position: absolute;
     text-align: center;
     bottom: 0;
     padding: 10px;
     left: 0;
     min-height: 50px; /* Mindesthöhe des Footers */
    right: 0;
     margin-top: auto; /* Platziert den Footer unten, wenn der Inhalt kurz ist */
     height:100px;
     background:#ccc;
}
}

Aktuelle Version vom 28. Oktober 2024, 14:45 Uhr

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

/* HTML- und Body-Bereich verwenden den gesamten Bildschirm */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Inhaltsbereich zwischen Kopf- und Fußzeile strecken */
#content {
    flex: 1;
    padding-bottom: 20px; /* Optionaler Abstand für den Footer */
}

/* Footer bleibt unten bei wenig Inhalt */
#footer {
    background-color: #f9f9f9;
    text-align: center;
    padding: 10px;
    min-height: 50px; /* Mindesthöhe des Footers */
    margin-top: auto; /* Platziert den Footer unten, wenn der Inhalt kurz ist */
}