Jump to content

MediaWiki:Common.css: Difference between revisions

From Utopia Game
No edit summary
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 */


/* Global background gradient - fixed to viewport */
/* Vector 2022 background gradient */
body {
html,
body,
.vector-feature-page-tools-disabled .mw-page-container,
.vector-feature-page-tools-enabled .mw-page-container {
     background: linear-gradient(0deg, #001D3D 0%, #000814 40%) !important;
     background: linear-gradient(0deg, #001D3D 0%, #000814 40%) !important;
     background-attachment: fixed !important;
     background-attachment: fixed !important;
    background-size: 100% 100% !important;
    color: #FFFFFF !important;
}
}


/* Main page background to show gradient */
/* Make content areas transparent to show gradient */
#mw-page-base {
.mw-page-container,
    background: linear-gradient(0deg, #001D3D 0%, #000814 40%) !important;
.mw-body,
     background-attachment: fixed !important;
#content,
.vector-body {
     background: transparent !important;
}
}


/* Content wrapper background */
/* Sidebar transparent */
#content {
#mw-panel,
.vector-main-menu,
.vector-sidebar {
     background: transparent !important;
     background: transparent !important;
}
}


.mw-body {
/* Default text color white */
     background: transparent !important;
body,
.mw-body,
.mw-body-content,
#mw-content-text,
.vector-body {
     color: #FFFFFF !important;
}
}


/* Sidebar background */
/* Header transparent */
#mw-panel {
.vector-header-container {
     background: transparent !important;
     background: transparent !important;
}
/* Default text color */
#bodyContent,
.mw-body-content,
#mw-content-text {
    color: #FFFFFF !important;
}
}

Revision as of 18:16, 24 January 2026

/* CSS placed here will be applied to all skins */

/* Vector 2022 background gradient */
html,
body,
.vector-feature-page-tools-disabled .mw-page-container,
.vector-feature-page-tools-enabled .mw-page-container {
    background: linear-gradient(0deg, #001D3D 0%, #000814 40%) !important;
    background-attachment: fixed !important;
}

/* Make content areas transparent to show gradient */
.mw-page-container,
.mw-body,
#content,
.vector-body {
    background: transparent !important;
}

/* Sidebar transparent */
#mw-panel,
.vector-main-menu,
.vector-sidebar {
    background: transparent !important;
}

/* Default text color white */
body,
.mw-body,
.mw-body-content,
#mw-content-text,
.vector-body {
    color: #FFFFFF !important;
}

/* Header transparent */
.vector-header-container {
    background: transparent !important;
}