MediaWiki:Common.css: Difference between revisions

From GRAB VR Wiki
Content deleted Content added
No edit summary
No edit summary
Line 15: Line 15:


.client-darkmode img {
.client-darkmode img {
filter: none;
filter: none !important;
-webkit-filter: none;
-webkit-filter: none !important;
}
}

Revision as of 06:20, 8 July 2024

/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');

html, body {
	font-family: 'Nunito', 'Linux Libertine', 'Georgia', 'Times', serif;
}

html {
	background-color: #5f8bc2;
	background-image: linear-gradient(#5f8bc2, #cfe0ea, #5f8bc2);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.client-darkmode img {
	filter: none !important;
	-webkit-filter: none !important;
}