MediaWiki:Common.css: Difference between revisions

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


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

body, .vector-header-container, .mw-page-container {
background: auto;
background-color: transparent;
}
.vector-main-menu {
background-color: #f8f9fa70;
}

.vector-page-tools::after {
display: none;
}
}

Revision as of 06:33, 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;
}

body, .vector-header-container, .mw-page-container {
	background: auto;
	background-color: transparent;
}
.vector-main-menu {
	background-color: #f8f9fa70;
}

.vector-page-tools::after {
	display: none;
}