MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
FireDirector (talk | contribs) (Created page with "→--------------------------------------------------------- GLOBAL PAGE BACKGROUND + DEFAULT TEXT COLOR ---------------------------------------------------------: body { background: #284139 !important; →deep green-teal: color: #f8d593 !important; →warm gold-beige text: } →--------------------------------------------------------- KEEP READING AREA WHITE WITH BLACK TEXT ---------------------------------------------------------: ...") |
FireDirector (talk | contribs) No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* --------------------------------------------------------- | /* --------------------------------------------------------- | ||
GLOBAL PAGE BACKGROUND | GLOBAL PAGE BACKGROUND (outside reading area) | ||
--------------------------------------------------------- */ | --------------------------------------------------------- */ | ||
body { | body { | ||
background: #284139 !important; | background: #284139 !important; | ||
} | } | ||
/* --------------------------------------------------------- | /* --------------------------------------------------------- | ||
KEEP READING AREA WHITE WITH BLACK TEXT | KEEP READING AREA WHITE WITH BLACK TEXT + DEFAULT LINKS | ||
--------------------------------------------------------- */ | --------------------------------------------------------- */ | ||
#content, | #content, | ||
| Line 26: | Line 25: | ||
#mw-panel a { | #mw-panel a { | ||
color: #f8d593 !important; | color: #f8d593 !important; | ||
} | } | ||
| Line 78: | Line 73: | ||
/* --------------------------------------------------------- | /* --------------------------------------------------------- | ||
FORCE READING-AREA LINKS TO BE BLACK | |||
--------------------------------------------------------- */ | --------------------------------------------------------- */ | ||
a { | #content a, | ||
color: # | #bodyContent a, | ||
.mw-body a { | |||
color: #7f8f75 !important; | |||
} | |||
#content a:visited, | |||
#bodyContent a:visited, | |||
.mw-body a:visited { | |||
color: #7f8f75 !important; | |||
} | |||
#content a:active, | |||
#bodyContent a:active, | |||
.mw-body a:active { | |||
color: #7f8f75 !important; | |||
} | |||
/* Vector (2010) — force reading-area links to #7f8f75 */ | |||
.mw-body-content a, | |||
#mw-content-text a, | |||
#bodyContent a, | |||
#content a { | |||
color: #7f8f75 !important; | |||
} | |||
.mw-body-content a:visited, | |||
#mw-content-text a:visited, | |||
#bodyContent a:visited, | |||
#content a:visited { | |||
color: #7f8f75 !important; | |||
} | |||
.mw-body-content a:active, | |||
#mw-content-text a:active, | |||
#bodyContent a:active, | |||
#content a:active { | |||
color: #7f8f75 !important; | |||
} | } | ||
Latest revision as of 22:54, 1 January 2026
/* ---------------------------------------------------------
GLOBAL PAGE BACKGROUND (outside reading area)
--------------------------------------------------------- */
body {
background: #284139 !important;
}
/* ---------------------------------------------------------
KEEP READING AREA WHITE WITH BLACK TEXT + DEFAULT LINKS
--------------------------------------------------------- */
#content,
#bodyContent,
.mw-body {
background: #ffffff !important;
color: #000000 !important;
}
/* ---------------------------------------------------------
SIDEBAR (LEFT PANEL)
--------------------------------------------------------- */
#mw-panel {
background: #284139 !important;
color: #f8d593 !important;
}
#mw-panel a {
color: #f8d593 !important;
}
/* ---------------------------------------------------------
TOP BAR / HEADER
--------------------------------------------------------- */
#mw-head,
#mw-head-base {
background: #284139 !important;
color: #f8d593 !important;
}
/* ---------------------------------------------------------
SEARCH BOX
--------------------------------------------------------- */
#p-search input {
background: #ffffff !important;
color: #000000 !important;
border: 1px solid #f8d593 !important;
}
/* ---------------------------------------------------------
TABS (Read / Edit / View history)
--------------------------------------------------------- */
#p-views ul li a {
background: #284139 !important;
color: #f8d593 !important;
border: 1px solid #f8d593 !important;
}
#p-views ul li.selected a {
background: #f8d593 !important;
color: #284139 !important;
}
/* ---------------------------------------------------------
FOOTER
--------------------------------------------------------- */
#footer {
background: #284139 !important;
color: #f8d593 !important;
}
#footer a {
color: #f8d593 !important;
}
/* ---------------------------------------------------------
FORCE READING-AREA LINKS TO BE BLACK
--------------------------------------------------------- */
#content a,
#bodyContent a,
.mw-body a {
color: #7f8f75 !important;
}
#content a:visited,
#bodyContent a:visited,
.mw-body a:visited {
color: #7f8f75 !important;
}
#content a:active,
#bodyContent a:active,
.mw-body a:active {
color: #7f8f75 !important;
}
/* Vector (2010) — force reading-area links to #7f8f75 */
.mw-body-content a,
#mw-content-text a,
#bodyContent a,
#content a {
color: #7f8f75 !important;
}
.mw-body-content a:visited,
#mw-content-text a:visited,
#bodyContent a:visited,
#content a:visited {
color: #7f8f75 !important;
}
.mw-body-content a:active,
#mw-content-text a:active,
#bodyContent a:active,
#content a:active {
color: #7f8f75 !important;
}