MediaWiki:Common.css: Difference between revisions

From WikiFictionAI
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 7: Line 7:
     background-size: cover;
     background-size: cover;
     /* Additional CSS properties for background positioning and color can be added here */
     /* Additional CSS properties for background positioning and color can be added here */
}
/* Hide the "Toolbox" section for anonymous (not logged-in) users */
.userloggedout #p-tb {
    display: none;
}
}

Revision as of 16:07, 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 */
}