MediaWiki:Common.css: Difference between revisions
(Created page with "→CSS placed here will be applied to all skins: →Custom CSS for pages using the "custom-background" class: .custom-background { →Add any additional styles you want for the container here: } →Adjust the styles for the body element within the "custom-background" container: .custom-background body { →You can override or add more styles for the body element here: }") |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* | /* CSS for the custom background */ | ||
.custom-background { | .custom-background { | ||
/ | background-image: url('https://wikifiction.s3.amazonaws.com/static/Light_Background.png'); | ||
background-repeat: no-repeat; | |||
background-attachment: fixed; | |||
background-size: cover; | |||
/* Additional CSS properties for background positioning and color can be added here */ | |||
/* | |||
} | } | ||
Revision as of 14:50, 4 January 2024
/* CSS placed here will be applied to all skins */
/* CSS for the custom background */
.custom-background {
background-image: url('https://wikifiction.s3.amazonaws.com/static/Light_Background.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
/* Additional CSS properties for background positioning and color can be added here */
}