MediaWiki:Citizen.css: Difference between revisions

From Semantic Stargate Wiki
(Created page with "→‎All CSS here will be loaded for users of the Citizen skin: html { --width-layout: 1600px; } →‎width: .mw-body-header, .citizen-body { max-width: 1280px; } →‎Fixing navbox space: .navbox .citizen-body table, .mw-body-content table { margin-top: 0; } →‎Centering navbox h3 titles: .client-js .section-subheading { display: inherit; } .thumb .thumbinner a.new { display: inline; padding: inherit; background-color: transparent; } .citizen-body...")
 
No edit summary
Line 21: Line 21:


.client-js .section-subheading {
.client-js .section-subheading {
display: inherit;
display: flex;
}
}



Revision as of 14:36, 19 January 2023

/* All CSS here will be loaded for users of the Citizen skin */

html {
	--width-layout: 1600px;
}

/* width */

.mw-body-header,
.citizen-body {
	max-width: 1280px;
}

/* Fixing navbox space */

.navbox .citizen-body table, .mw-body-content table {
	margin-top: 0;
}

/* Centering navbox h3 titles */

.client-js .section-subheading {
	display: flex;
}

.thumb .thumbinner a.new {
 	display: inline;
 	padding: inherit;
 	background-color: transparent;
 }

.citizen-body a.image, .mw-body-content a.image {
	display: inline;
}