Jump to content

MediaWiki:Common.css: Difference between revisions

From Danno's Rocket Wiki
No edit summary
No edit summary
Line 27: Line 27:
display: flex;
display: flex;
flex-direction: row;
flex-direction: row;
flex-flow: row wrap;
justify-content: space-between;
padding: 0;
margin: 0 -5px 0 -5px;
flex-basis: auto;
flex-basis: auto;
}
}

Revision as of 16:15, 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;
	flex-basis: auto;
	flex-grow: 1;
}

.frontpage_nav_column {
	display: flex;
	flex-direction: column;
	flex-flow: column wrap;
	justify-content: space-between;
	padding: 0;
	margin: 0 -5px 0 -5px;
	flex-basis: auto;
	width: 200px;
	flex-grow: 0;
}

.frontpage_row {
	display: flex;
	flex-direction: row;
	flex-basis: auto;
}

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