MediaWiki:Common.css: Difference between revisions
UI fix: dark base + sidebar (patch step1) |
UI fix: add Cyberpunk accent (patch step2) |
||
| Line 1,483: | Line 1,483: | ||
} | } | ||
.wikititle, .wikitable th, .infobox th{background:#222!important;color:var(--link-hover)!important;} | .wikititle, .wikitable th, .infobox th{background:#222!important;color:var(--link-hover)!important;} | ||
/* === PATCH step2: Cyberpunk accent === */ | |||
/* Headings */ | |||
h1, h2, h3, h4, h5, h6 { | |||
color: #ffcc00 !important; | |||
border-bottom: 1px solid #333 !important; | |||
} | |||
/* Links */ | |||
a { color: #39d1ff !important; } | |||
a:visited { color: #a0a0ff !important; } | |||
a:hover { color: #ffcc00 !important; } | |||
/* Infobox */ | |||
.infobox { | |||
background: #111 !important; | |||
border: 2px solid #ffcc00 !important; | |||
color: #e0e0e0 !important; | |||
} | |||
.infobox th { | |||
background: #222 !important; | |||
color: #ffcc00 !important; | |||
} | |||
.infobox td { | |||
background: #181818 !important; | |||
} | |||
/* Navbox */ | |||
.navbox { | |||
background: #111 !important; | |||
border: 1px solid #ffcc00 !important; | |||
} | |||
.navbox-title { | |||
background: #222 !important; | |||
color: #ffcc00 !important; | |||
} | |||
/* Tables */ | |||
.wikitable { | |||
background: #1a1a1a !important; | |||
border: 1px solid #ffcc00 !important; | |||
} | |||
.wikitable th { | |||
background: #222 !important; | |||
color: #ffcc00 !important; | |||
} | |||
/* Sidebar highlight */ | |||
#mw-panel .portal h3 { | |||
color: #ffcc00 !important; | |||
} | |||