MediaWiki:Common.css: Difference between revisions
Appearance
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 */ | /* Global background gradient - fixed to viewport */ | ||
body { | body { | ||
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; | color: #FFFFFF !important; | ||
} | } | ||
/* Main | /* Main page background to show gradient */ | ||
# | #mw-page-base { | ||
background: linear-gradient(0deg, #001D3D 0%, #000814 40%) !important; | |||
background: | background-attachment: fixed !important; | ||
} | } | ||
/* | /* Content wrapper background */ | ||
# | #content { | ||
background: transparent !important; | |||
} | } | ||
.mw-body { | |||
background: transparent !important; | |||
} | } | ||
/* Sidebar background */ | |||
#mw-panel { | |||
background: transparent !important; | |||
} | } | ||
/* Default text color */ | |||
#bodyContent, | |||
.mw-body-content, | |||
#mw-content-text { | |||
/* | |||
. | |||
color: #FFFFFF !important; | color: #FFFFFF !important; | ||
} | } | ||
Revision as of 18:12, 24 January 2026
/* CSS placed here will be applied to all skins */
/* Global background gradient - fixed to viewport */
body {
background: linear-gradient(0deg, #001D3D 0%, #000814 40%) !important;
background-attachment: fixed !important;
background-size: 100% 100% !important;
color: #FFFFFF !important;
}
/* Main page background to show gradient */
#mw-page-base {
background: linear-gradient(0deg, #001D3D 0%, #000814 40%) !important;
background-attachment: fixed !important;
}
/* Content wrapper background */
#content {
background: transparent !important;
}
.mw-body {
background: transparent !important;
}
/* Sidebar background */
#mw-panel {
background: transparent !important;
}
/* Default text color */
#bodyContent,
.mw-body-content,
#mw-content-text {
color: #FFFFFF !important;
}