Jump to content

MediaWiki:Common.css: Difference between revisions

From Danno's Rocket Wiki
Created page with "CSS placed here will be applied to all skins: .frontpage_column { display: flex; flex-direction: column; flex-flow: row wrap; justify-content: space-between; padding: 0; margin: 0 -5px 0 -5px; } .frontpage_box { flex: 1; margin: 5px; min-width: 240px; border: 1px solid #CCC; padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba(0,0,0,0.1); }"
 
No edit summary
Line 4: Line 4:
display: flex;
display: flex;
flex-direction: column;
flex-direction: column;
flex-flow: row wrap;
flex-flow: column wrap;
justify-content: space-between;
justify-content: space-between;
padding: 0;
padding: 0;

Revision as of 15:45, 2 December 2025

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

.frontpage_column {
	display: flex;
	flex-direction: column;
	flex-flow: column wrap;
	justify-content: space-between;
	padding: 0;
	margin: 0 -5px 0 -5px;
}

.frontpage_box {
	flex: 1;
	margin: 5px;
	min-width: 240px;
	border: 1px solid #CCC;
	padding: 0 10px 10px 10px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}