GaryJJSpate (talk | contribs) No edit summary |
GaryJJSpate (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* ========================================================== | /* ========================================================== | ||
THE VAULT @ THE E.E.R.I.E. FILES — MediaWiki:Cosmos.css | THE VAULT @ THE E.E.R.I.E. FILES — MediaWiki:Cosmos.css | ||
Cosmos skin overrides | |||
Purpose: | |||
- Header | |||
- Sidebar | |||
- Search | |||
- Footer | |||
- Skin navigation | |||
Main article styling lives in Common.css | |||
========================================================== */ | ========================================================== */ | ||
:root{ | |||
--void:# | /* ========================================================== | ||
--panel:# | VAULT COLOUR SYSTEM | ||
--panel-edge:# | ========================================================== */ | ||
--acid:# | |||
--violet:# | :root { | ||
--cream:# | |||
--amber:# | --void:#f5f1e8; | ||
--muted:# | --panel:#ffffff; | ||
--panel-edge:#d8d0c0; | |||
--acid:#7ab800; | |||
--violet:#7a32b8; | |||
--cream:#222222; | |||
--amber:#b87800; | |||
--muted:#6b6458; | |||
} | } | ||
/* | |||
/* ========================================================== | |||
COSMOS SIDE RAIL | |||
========================================================== */ | |||
#cosmos-rail .rail-module, | #cosmos-rail .rail-module, | ||
.rail-module { | .rail-module { | ||
background-color: var(--panel) !important; | |||
border: 1px solid var(--panel-edge) !important; | background-color:var(--panel) !important; | ||
color: var(--cream) !important; | |||
border:1px solid var(--panel-edge) !important; | |||
color:var(--cream) !important; | |||
box-shadow:none !important; | |||
} | } | ||
.rail-module .rail-module-header, | .rail-module .rail-module-header, | ||
.rail-module h3 { | .rail-module h3 { | ||
font-family: 'JetBrains Mono', monospace !important; | |||
color: var(--violet) !important; | font-family:'JetBrains Mono', monospace !important; | ||
letter-spacing: | |||
text-transform: uppercase; | color:var(--violet) !important; | ||
font-size: | |||
border-bottom: 1px solid var(--panel-edge) !important; | letter-spacing:.08em; | ||
text-transform:uppercase; | |||
font-size:.75rem !important; | |||
border-bottom:1px solid var(--panel-edge) !important; | |||
} | } | ||
.rail-module a { | .rail-module a { | ||
color: | |||
color:#276b9c !important; | |||
} | } | ||
.rail-module a:hover { | .rail-module a:hover { | ||
color: var(--acid) !important; | |||
color:var(--acid) !important; | |||
} | } | ||
/* | |||
/* ========================================================== | |||
SEARCH | |||
========================================================== */ | |||
.cosmos-searchInput input, | .cosmos-searchInput input, | ||
#simpleSearch, | #simpleSearch, | ||
.oo-ui-textInputWidget input { | .oo-ui-textInputWidget input { | ||
background-color: | |||
color: var(--cream) !important; | background-color:#ffffff !important; | ||
border: 1px solid var(--panel-edge) !important; | |||
color:var(--cream) !important; | |||
border:1px solid var(--panel-edge) !important; | |||
} | } | ||
/* | |||
.cosmos-searchInput input::placeholder { | |||
color:var(--muted); | |||
} | |||
/* ========================================================== | |||
HEADER / NAVIGATION | |||
========================================================== */ | |||
.cosmos-community-header, | .cosmos-community-header, | ||
.wiki-nav, | .wiki-nav, | ||
#p-logo a { | #p-logo a { | ||
border-color: var(--panel-edge) !important; | |||
border-color:var(--panel-edge) !important; | |||
} | } | ||
.wiki-nav a, .cosmos-header-menu a { | |||
color: var(--muted) !important; | |||
.wiki-nav a, | |||
.cosmos-header-menu a { | |||
color:var(--muted) !important; | |||
} | } | ||
.wiki-nav a:hover, .cosmos-header-menu a:hover { | |||
color: var(-- | |||
.wiki-nav a:hover, | |||
.cosmos-header-menu a:hover { | |||
color:var(--violet) !important; | |||
} | } | ||
/* | |||
/* ========================================================== | |||
PERSONAL TOOLBAR | |||
========================================================== */ | |||
.personal-more-container, | .personal-more-container, | ||
#p-personal { | #p-personal { | ||
color: var(--muted) !important; | |||
color:var(--muted) !important; | |||
} | } | ||
#p-personal a { | #p-personal a { | ||
color: var(--muted) !important; | |||
color:var(--muted) !important; | |||
} | } | ||
#p-personal a:hover { | #p-personal a:hover { | ||
color: var(-- | |||
color:var(--violet) !important; | |||
} | |||
/* ========================================================== | |||
FOOTER | |||
========================================================== */ | |||
#footer, | |||
.mw-footer { | |||
background-color:#ede7da !important; | |||
border-top:1px solid var(--panel-edge) !important; | |||
color:var(--muted) !important; | |||
} | |||
#footer a, | |||
.mw-footer a { | |||
color:var(--violet) !important; | |||
} | |||
/* ========================================================== | |||
COSMOS BACKGROUND FIXES | |||
Prevents Cosmos forcing dark containers | |||
========================================================== */ | |||
.cosmos-body, | |||
.cosmos-main-content, | |||
.cosmos-content { | |||
background-color:var(--void) !important; | |||
color:var(--cream) !important; | |||
} | } | ||
/* | |||
/* ========================================================== | |||
BUTTONS / CONTROLS | |||
========================================================== */ | |||
button, | |||
input[type="submit"] { | |||
font-family:'JetBrains Mono', monospace; | |||
} | } | ||
color: var(-- | |||
button:hover, | |||
input[type="submit"]:hover { | |||
border-color:var(--acid) !important; | |||
} | } | ||
/* | |||
/* ========================================================== | |||
RESPONSIVE | |||
========================================================== */ | |||
@media screen and (max-width:700px) { | |||
.rail-module { | |||
border-radius:6px; | |||
} | |||
} | |||
Revision as of 22:15, 29 July 2026
/* ==========================================================
THE VAULT @ THE E.E.R.I.E. FILES — MediaWiki:Cosmos.css
Cosmos skin overrides
Purpose:
- Header
- Sidebar
- Search
- Footer
- Skin navigation
Main article styling lives in Common.css
========================================================== */
/* ==========================================================
VAULT COLOUR SYSTEM
========================================================== */
:root {
--void:#f5f1e8;
--panel:#ffffff;
--panel-edge:#d8d0c0;
--acid:#7ab800;
--violet:#7a32b8;
--cream:#222222;
--amber:#b87800;
--muted:#6b6458;
}
/* ==========================================================
COSMOS SIDE RAIL
========================================================== */
#cosmos-rail .rail-module,
.rail-module {
background-color:var(--panel) !important;
border:1px solid var(--panel-edge) !important;
color:var(--cream) !important;
box-shadow:none !important;
}
.rail-module .rail-module-header,
.rail-module h3 {
font-family:'JetBrains Mono', monospace !important;
color:var(--violet) !important;
letter-spacing:.08em;
text-transform:uppercase;
font-size:.75rem !important;
border-bottom:1px solid var(--panel-edge) !important;
}
.rail-module a {
color:#276b9c !important;
}
.rail-module a:hover {
color:var(--acid) !important;
}
/* ==========================================================
SEARCH
========================================================== */
.cosmos-searchInput input,
#simpleSearch,
.oo-ui-textInputWidget input {
background-color:#ffffff !important;
color:var(--cream) !important;
border:1px solid var(--panel-edge) !important;
}
.cosmos-searchInput input::placeholder {
color:var(--muted);
}
/* ==========================================================
HEADER / NAVIGATION
========================================================== */
.cosmos-community-header,
.wiki-nav,
#p-logo a {
border-color:var(--panel-edge) !important;
}
.wiki-nav a,
.cosmos-header-menu a {
color:var(--muted) !important;
}
.wiki-nav a:hover,
.cosmos-header-menu a:hover {
color:var(--violet) !important;
}
/* ==========================================================
PERSONAL TOOLBAR
========================================================== */
.personal-more-container,
#p-personal {
color:var(--muted) !important;
}
#p-personal a {
color:var(--muted) !important;
}
#p-personal a:hover {
color:var(--violet) !important;
}
/* ==========================================================
FOOTER
========================================================== */
#footer,
.mw-footer {
background-color:#ede7da !important;
border-top:1px solid var(--panel-edge) !important;
color:var(--muted) !important;
}
#footer a,
.mw-footer a {
color:var(--violet) !important;
}
/* ==========================================================
COSMOS BACKGROUND FIXES
Prevents Cosmos forcing dark containers
========================================================== */
.cosmos-body,
.cosmos-main-content,
.cosmos-content {
background-color:var(--void) !important;
color:var(--cream) !important;
}
/* ==========================================================
BUTTONS / CONTROLS
========================================================== */
button,
input[type="submit"] {
font-family:'JetBrains Mono', monospace;
}
button:hover,
input[type="submit"]:hover {
border-color:var(--acid) !important;
}
/* ==========================================================
RESPONSIVE
========================================================== */
@media screen and (max-width:700px) {
.rail-module {
border-radius:6px;
}
}
