MediaWiki:Common.css: Difference between revisions

From TetrisWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
.spaced-10 > * {
.spaced-10 > * {
margin: 5px;
margin: 5px;
}
/* Extension:Math */
/* https://www.mediawiki.org/wiki/Extension:Math/advancedSettings#CSS_for_the_MathML_with_SVG_fallback_mode */
.mwe-math-mathml-a11y {
clip: auto !important;
overflow: visible !important;
position: static !important;
width: auto !important;
height: auto !important;
opacity: 1 !important;
}
.mwe-math-fallback-image-inline, .mwe-math-fallback-image-display {
display: none !important;
}
/* .mw-body, */
mtext {
font-family: Latin Modern Roman;
}
math {
font-family: Latin Modern Math;
}
}

Revision as of 19:22, 1 October 2019

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

/* Spaces direct children 10 px apart, top and bottom. */
.spaced-10 > * {
	margin: 5px;
}

/* Extension:Math */
/* https://www.mediawiki.org/wiki/Extension:Math/advancedSettings#CSS_for_the_MathML_with_SVG_fallback_mode */
.mwe-math-mathml-a11y {
	clip: auto !important;
	overflow: visible !important;
	position: static !important;
	width: auto !important;
	height: auto !important;
	opacity: 1 !important;
}
.mwe-math-fallback-image-inline, .mwe-math-fallback-image-display {
	display: none !important;
}
/* .mw-body, */
mtext {
	font-family: Latin Modern Roman;
}
math {
	font-family: Latin Modern Math;
}