More actions
No edit summary |
No edit summary |
||
| Line 29: | Line 29: | ||
} | } | ||
/* Links */ | /* Links - only actual links are cyan */ | ||
a, a:visited { | a, a:visited { | ||
color: #00d9ff !important; | color: #00d9ff !important; | ||
| Line 77: | Line 77: | ||
} | } | ||
/* Emphasis */ | /* Emphasis - NOT cyan, keep it distinct from links */ | ||
em, i { | em, i { | ||
color: # | color: #c9b1ff; | ||
font-style: italic; | |||
} | } | ||
Revision as of 07:16, 9 January 2026
/* Wikifesto Custom Styles - Dark, Clean, Manifesto-worthy */
/* Dark theme base */
body {
background: #1a1a2e !important;
color: #eaeaea !important;
}
#content, .mw-body {
background: #16213e !important;
color: #eaeaea !important;
border: 1px solid #0f3460 !important;
border-radius: 8px;
padding: 2em;
}
/* Headers */
h1, h2, h3, h4, h5, h6,
.mw-headline,
#firstHeading {
color: #e94560 !important;
font-family: 'Georgia', serif;
border-bottom-color: #0f3460 !important;
}
#firstHeading {
font-size: 2.5em;
margin-bottom: 0.5em;
}
/* Links - only actual links are cyan */
a, a:visited {
color: #00d9ff !important;
}
a:hover {
color: #e94560 !important;
text-decoration: none;
}
/* Navigation */
#mw-panel, .vector-menu-portal {
background: #0f3460 !important;
}
#mw-panel .vector-menu-portal .vector-menu-heading {
color: #e94560 !important;
}
.vector-menu-portal .vector-menu-content li a {
color: #00d9ff !important;
}
/* Sidebar */
#mw-navigation {
background: #1a1a2e !important;
}
/* Search */
#simpleSearch {
background: #16213e !important;
border-color: #0f3460 !important;
}
#searchInput {
color: #eaeaea !important;
}
/* Horizontal rules */
hr {
border-color: #0f3460 !important;
}
/* Lists */
ul, ol {
color: #eaeaea;
}
/* Emphasis - NOT cyan, keep it distinct from links */
em, i {
color: #c9b1ff;
font-style: italic;
}
strong, b {
color: #e94560;
}
/* Footer */
#footer {
background: #0f3460 !important;
color: #888 !important;
}
/* Hide some MediaWiki clutter */
#mw-page-base, #mw-head-base {
background: #1a1a2e !important;
}
.mw-editsection {
font-size: 0.8em;
}
/* Content area spacing */
.mw-parser-output {
line-height: 1.7;
font-size: 1.1em;
}
.mw-parser-output p {
margin-bottom: 1em;
}
/* Blockquotes for manifestos */
blockquote {
border-left: 4px solid #e94560;
padding-left: 1em;
margin: 1em 0;
font-style: italic;
color: #aaa;
}