MediaWiki:Common.css: Difference between revisions

From Fiero Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Center old Vector layout on wide screens */
@media screen and (min-width: 1300px) {
    body {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }


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


.mw-page-container,
    #content {
.vector-page-titlebar,
        margin-left: 176px;
.vector-sticky-header {
        max-width: none;
    max-width: 1200px;
    }
    margin-left: auto;
 
     margin-right: auto;
    #mw-head-base,
    #mw-page-base {
        margin-left: 176px;
     }
}
}

Latest revision as of 20:28, 6 July 2026

/* CSS placed here will be applied to all skins */
/* Center old Vector layout on wide screens */
@media screen and (min-width: 1300px) {
    body {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    #mw-panel {
        left: 0;
    }

    #content {
        margin-left: 176px;
        max-width: none;
    }

    #mw-head-base,
    #mw-page-base {
        margin-left: 176px;
    }
}