MediaWiki:Common.css: Difference between revisions

From Fiero Wiki
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: Limit article width on large screens for better readability: .mw-body, #content { max-width: 1200px; margin-left: auto; margin-right: auto; }"
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Limit article width on large screens for better readability */
/* Limit the full wiki layout width on large screens */
.mw-body,
body {
#content {
    background-position: center top;
}
 
.mw-page-container,
.vector-page-titlebar,
.vector-sticky-header {
     max-width: 1200px;
     max-width: 1200px;
     margin-left: auto;
     margin-left: auto;
     margin-right: auto;
     margin-right: auto;
}
}

Revision as of 20:23, 6 July 2026

/* CSS placed here will be applied to all skins */

/* Limit the full wiki layout width on large screens */
body {
    background-position: center top;
}

.mw-page-container,
.vector-page-titlebar,
.vector-sticky-header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}