MediaWiki:Gadget-MainPageStyle.css: Difference between revisions

From Halopedia, the Halo wiki

mNo edit summary
No edit summary
Line 1: Line 1:
/* CSS styling and responsive support for the main page */
/* CSS styling and responsive support for the main page */
/* Site styles */


/* Responsive fixes */
/* Responsive fixes */
@media all and (max-width: 719px) {
#mp-container {
overflow: visible !important;
}
#mp-container > tbody > tr > td,
.mp-navigation > tbody > tr > td,
table.communities > tbody > tr > th {
display: block !important;
width: 100% !important;
padding: 0 !important;
}
table.communities > tbody > tr > th:not(:last-of-type) {
margin-bottom: 15px;
}
table.communities > tbody > tr:not(:first-of-type) {
display: none !important;
}
.containerContent input.mw-ui-input {
width: 75% !important;
}
.containerContent > ul {
margin-top: 0 !important;
margin-bottom: 0 !important;
margin-right: 0.75em !important;
}
.containerTem {
width: auto !important;
}
}

Revision as of 14:40, March 6, 2022

/* CSS styling and responsive support for the main page */

/* Responsive fixes */
@media all and (max-width: 719px) {
	#mp-container {
		overflow: visible !important;
	}
	#mp-container > tbody > tr > td,
	.mp-navigation > tbody > tr > td,
	table.communities > tbody > tr > th {
		display: block !important;
		width: 100% !important;
		padding: 0 !important;
	}
	table.communities > tbody > tr > th:not(:last-of-type) {
		margin-bottom: 15px;
	}
	table.communities > tbody > tr:not(:first-of-type) {
		display: none !important;
	}
	.containerContent input.mw-ui-input {
		width: 75% !important;
	}
	.containerContent > ul {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		margin-right: 0.75em !important;
	}
	.containerTem {
		width: auto !important;
	}
}