MediaWiki:Common.css: Difference between revisions

From WikiFictionAI
 
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 */
/* Custom CSS for pages using the "custom-background" class */
/* CSS for the custom background */
.custom-background {
.custom-background {
     /* Add any additional styles you want for the container here */
     background-image: url('https://wikifiction.s3.amazonaws.com/static/Light_Background.png');
}
    background-repeat: no-repeat;
 
    background-attachment: fixed;
/* Adjust the styles for the body element within the "custom-background" container */
    background-size: cover;
.custom-background body {
     /* Additional CSS properties for background positioning and color can be added here */
     /* You can override or add more styles for the body element 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 */
}