MediaWiki:Timeless.css: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will affect users of the Timeless skin: table { border-collapse: separate; border-spacing: 2px; }")
 
No edit summary
Line 4: Line 4:
border-collapse: separate;
border-collapse: separate;
border-spacing: 2px;
border-spacing: 2px;
}
.mediawiki table tbody {
width: 100% !important;
display: table !important;
}
.mediawiki .infobox table {
width: 100% !important;
}
@media all and (max-width: 850px) {
.mediawiki table,
.mediawiki .infobox {
width: 100% !important;
min-width: 0 !important;
max-width: none !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
.mediawiki .infobox {
display: block !important;
float: none !important;
margin: 15px 0 15.5px !important;
}
}
}

Revision as of 02:41, December 27, 2019

/* CSS placed here will affect users of the Timeless skin */

table {
	border-collapse: separate;
	border-spacing: 2px;
}
.mediawiki table tbody {
	width: 100% !important;
	display: table !important;
}
.mediawiki .infobox table {
	width: 100% !important;
}
@media all and (max-width: 850px) {
	.mediawiki table,
	.mediawiki .infobox {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.mediawiki .infobox {
		display: block !important;
		float: none !important;
		margin: 15px 0 15.5px !important;
	}
}