MediaWiki:Vector.css: Difference between revisions
New Background |
No edit summary |
||
Line 3: | Line 3: | ||
/* Set the background image to fill the page and stay behind all content */ | /* Set the background image to fill the page and stay behind all content */ | ||
body.skin-vector { | body.skin-vector { | ||
background: url('/Wiki_BG1 | background: url('/Wiki_BG1.png') no-repeat center center fixed; | ||
background-size: cover; | background-size: cover; | ||
} | } |
Latest revision as of 13:11, 17 March 2025
/* All CSS here will be loaded for users of the Vector skin */
/* Set the background image to fill the page and stay behind all content */
body.skin-vector {
background: url('/Wiki_BG1.png') no-repeat center center fixed;
background-size: cover;
}
body.skin-vector-legacy::before {
content: "";
width: 100%;
height: 100%;
background-color: var(--background-color-base);
position: fixed;
z-index: -1;
}
:root {
--background-color-base: #fffa;
}