Jump to content

MediaWiki:Common.css: Difference between revisions

From jeankn.app WIKI
Created page with "Change background and link colors globally: body { background-color: #f5f6fa; color: #1b1b1b; } a, a:visited { color: #0078d7; } a:hover { color: #004d99; } Sidebar color: #mw-panel { background: #002b36; } Header background: #mw-head { background: #003c4f; }"
 
No edit summary
 
(34 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Change background and link colors globally */
body {
body {
    background-color: #f5f6fa;
background-color: #101418;
    color: #1b1b1b;
}
}


a, a:visited {
.mw-logo, .mw-logo:visited, .mw-logo:active, .mw-logo:hover {
    color: #0078d7;
color: #000000;
}
}


a:hover {
.mw-logo-icon {
    color: #004d99;
display: none;
}
}


/* Sidebar color */
.vector-main-menu-action-opt-out {
#mw-panel {
display: none;
    background: #002b36;
}
}


/* Header background */
.mw-header, .mw-page-container, .vector-pinned-container {
#mw-head {
background-color: #00000000 !important;
    background: #003c4f;
}
 
.vector-sticky-pinned-container::after {
background: none;
}
}

Latest revision as of 20:37, 19 October 2025

body {
	background-color: #101418;
}

.mw-logo, .mw-logo:visited, .mw-logo:active, .mw-logo:hover {
	color: #000000;
}

.mw-logo-icon {
	display: none;
}

.vector-main-menu-action-opt-out {
	display: none;
}

.mw-header, .mw-page-container, .vector-pinned-container {
	background-color: #00000000 !important;
}

.vector-sticky-pinned-container::after {
	background: none;
}