Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 1: Line 1:
/* Default: Full width for regular pages */
/* Default: Full width */
.mw-page-container {
:root {
max-width: 100% !important;
--width-layout: 100vw;
}
}


.page-Container {
/* Override for specific pages using body class */
max-width: none !important;
.page-Main_Page,
}
.page-Hauptseite {
 
--width-layout: 1600px;
/* Main page: Constrain to 1600px */
.page-Hauptseite .mw-page-container {
max-width: 1600px !important;
margin-left: auto !important;
margin-right: auto !important;
}
 
.page-Hauptseite .page-Container {
max-width: 1600px !important;
}
}

Revision as of 01:12, 5 February 2026

/* Default: Full width */
:root {
	--width-layout: 100vw;
}

/* Override for specific pages using body class */
.page-Main_Page,
.page-Hauptseite {
	--width-layout: 1600px;
}