MediaWiki:Monobook.css: Difference between revisions

From Glue3D Wiki, the free encygluepedia
Jump to navigationJump to search
Created page with "All CSS here will be loaded for users of the MonoBook skin: html, body { height: 100%; margin: 0; padding: 0; } #globalWrapper { min-height: 100vh; display: flex; flex-direction: column; } #column-content { flex: 1; }"
 
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the MonoBook skin */
html, body {
html, body {
     height: 100%;
     height: 100%;
    margin: 0;
    padding: 0;
}
}


#globalWrapper {
#globalWrapper {
    position: relative;
     min-height: 100vh;
     min-height: 100vh;
     display: flex;
}
     flex-direction: column;
 
#footer {
    position: absolute;
     bottom: 0;
     width: 100%;
}
}


#column-content {
#column-content {
     flex: 1;
     padding-bottom: 60px;
}
}

Revision as of 09:44, 29 May 2026

html, body {
    height: 100%;
}

#globalWrapper {
    position: relative;
    min-height: 100vh;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

#column-content {
    padding-bottom: 60px;
}