MediaWiki:Vector.css: Difference between revisions

From WikiFictionAI
No edit summary
No edit summary
Line 18: Line 18:




.mw-page-container-inner {
/* Make the page container and main menu backgrounds transparent */
     background-color: rgba(255, 255, 255, 0); /* White background with 50% opacity */
.mw-page-container-inner,
.mw-page-container,
.vector-main-menu,
.vector-main-menu-group {
     background-color: rgba(255, 255, 255, 0); /* White background with 0% opacity */
}
}
//.mw-page-container {
//    background-color: rgba(255, 255, 255, 0); /* White background with 50% opacity */
//}

Revision as of 08:54, 5 August 2024

/* All CSS here will be loaded for users of the Vector skin */
body {
    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 */
}

//.vector-toc {
//    display: none;
//}

/* Hide the entire TOC navigation in the Vector skin */
.vector-toc-landmark {
    display: none !important;
}


/* Make the page container and main menu backgrounds transparent */
.mw-page-container-inner,
.mw-page-container,
.vector-main-menu,
.vector-main-menu-group {
    background-color: rgba(255, 255, 255, 0); /* White background with 0% opacity */
}