MediaWiki:Common.css: Difference between revisions

From Fiero Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 3: Line 3:
@media screen and (min-width: 1300px) {
@media screen and (min-width: 1300px) {
     body {
     body {
         max-width: 1300px;
         max-width: 1500px;
         margin-left: auto;
         margin-left: auto;
         margin-right: auto;
         margin-right: auto;

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;
    }
}