MediaWiki:Common.css: Difference between revisions

From TetrisWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 59: Line 59:
     text-align: left;
     text-align: left;
}
}
.main-page-header a {
.main-page-header a,
color: #2b59e7;
.main-page-header a.external {
color: #8ba8ff;
}
}
.main-page-header a:visited {
.main-page-header a:visited {

Revision as of 03:37, 8 February 2020

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

/* logo fix */
#p-logo a {
	background-size: 100%;
}

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

.list-spaced-v-10 > ul > li {
	margin: 10px;
}
.list-bare > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
/* 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;
}
*/

/* Front page styles */
.page-Tetris_wiki .firstHeading {
	display: none;
}

.main-page-header {
	margin-bottom: 15px;
	padding: 15px 60px;
    background: url(/images/7/74/MainPage_background.jpg);
    background-size: cover;
    color: white;
    background-position: top;
    text-align: left;
}
.main-page-header a,
.main-page-header a.external {
	color: #8ba8ff;
}
.main-page-header a:visited {
	color: #a4b9f6;
}
.main-page-header a.external:visited {
	color: #ca00fb;
}
.main-page-header .red {
	color: #2b59e7;
}
.main-page-header h1 {
	border-bottom: none;
	color: white;
    font-weight: bold;
    font-family: sans-serif;
}
.main-page-header__nav ul {
	margin-left: 0;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
}
.main-page-header__nav li:not(:last-child) {
	margin-right: 15px;
}
.main-page-header__nav li a {
	background: #347CFF;
	color: white;
	padding: 5px 10px;
	border-radius: 2px;
}
.main-page-header__nav li .new {
	color: #CB4554;
	background: #cfd5de;
}
.main-page-header__nav li a:visited {
	color: white;
}
.main-page-game-list {
	display: flex;
}
.main-page-game {
	width: 120px;
	text-align: center;
	
}
.main-page-game img {
	width: 120px;
	height: 200px;
	object-fit: contain;
}
.main-page-game:not(:last-child) {
	margin-right: 15px;
}