MediaWiki:Common.css
From The Jadnix Codex
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* ============================================================
JADNIX CODEX: MEDIK VOID (FINAL MASTER)
============================================================ */
/* 1. ROOT VARIABLES */
:root {
--void-accent: #a020f0;
--void-bg: #0a0a0f;
--void-card: #13131a;
--void-text: #d1d1d1;
--void-hover: rgba(160, 32, 240, 0.4); /* Brighter Hover */
}
/* 2. NUCLEAR BACKGROUND FIX */
html, body, .medik-wrap, .container, .container-fluid, .row, #mw-wrapper {
background-color: var(--void-bg) !important;
background-image: none !important;
color: var(--void-text) !important;
}
/* SCANLINES */
body::before {
content: " ";
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: repeating-linear-gradient(
0deg, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 1px,
transparent 1px, transparent 2px
);
z-index: 9999;
pointer-events: none;
}
/* 3. HEADER LAYOUT */
.navbar-collapse { display: flex !important; flex-basis: auto !important; }
.navbar-nav { flex-direction: row !important; align-items: center; }
.nav-item { margin-right: 15px !important; margin-left: 15px !important; }
/* Header Text */
.navbar-nav .nav-link, .dropdown-toggle {
color: var(--void-text) !important;
font-family: 'Consolas', monospace;
font-size: 1.1em;
padding-bottom: 5px;
}
.navbar-nav .nav-link:hover, .dropdown-toggle:hover {
color: #ffffff !important;
text-shadow: 0 0 5px var(--void-accent);
}
.nav-item.active .nav-link {
font-weight: bold;
color: #fff !important;
border-bottom: 3px solid var(--void-accent);
}
/* 4. CONTENT CARD */
#content, .mw-body {
background-color: var(--void-card) !important;
border: 1px solid #333 !important;
border-left: 5px solid var(--void-accent) !important;
box-shadow: 0 0 30px rgba(0,0,0,0.8) !important;
margin-top: 20px !important;
padding: 30px !important;
color: var(--void-text) !important;
}
.col-12, .col-md-9, .col-xl-9, .py-md-3 { background: transparent !important; }
/* 5. SIDEBAR NAVIGATION FIX */
#mw-navigation .nav-link:hover,
.sidebar .nav-link:hover {
background-color: var(--void-hover) !important;
color: #fff !important;
padding-left: 20px !important;
opacity: 1 !important;
}
/* 6. GLOBAL TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
color: #fff !important;
font-family: 'Consolas', monospace;
border-bottom: 1px solid #333;
}
a {
color: var(--void-accent);
transition: 0.2s;
}
a:hover {
color: #fff;
text-shadow: 0 0 5px var(--void-accent);
text-decoration: none;
}
/* 7. DROPDOWNS */
.dropdown-menu {
background-color: var(--void-card) !important;
border: 1px solid var(--void-accent) !important;
}
.dropdown-item { color: var(--void-text) !important; }
.dropdown-item:hover {
background-color: var(--void-accent) !important;
color: #fff !important;
}
/* ============================================================
FACTION THEMES
============================================================ */
/* DEALERS (Gold) */
body.theme-dealer {
--void-accent: #DAA520 !important;
--void-hover: rgba(218, 165, 32, 0.4) !important;
--font-family-system: 'Georgia', serif;
}
body.theme-dealer h1, body.theme-dealer h2 {
font-family: 'Georgia', serif;
color: #DAA520 !important;
}
/* SKIPPERS (Blue) */
body.theme-skipper {
--void-accent: #21b0cd !important;
--void-hover: rgba(33, 176, 205, 0.4) !important;
--font-family-system: 'Consolas', monospace;
}
body.theme-skipper h1, body.theme-skipper h2 {
color: #21b0cd !important;
}
/* STILL (Purple) */
body.theme-still {
--void-accent: #a020f0 !important;
--void-hover: rgba(160, 32, 240, 0.4) !important;
}
/* ============================================================
CRDD CALCULATOR
============================================================ */
#crdd-interface { background-color: #0a0a0f; border: 2px solid #21b0cd; padding: 20px; font-family: 'Consolas', monospace; color: #21b0cd; box-shadow: 0 0 20px rgba(33, 176, 205, 0.2); margin-top: 20px; max-width: 800px; }
.crdd-header { border-bottom: 1px dashed #21b0cd; padding-bottom: 10px; margin-bottom: 20px; text-align: right; font-size: 0.8em; opacity: 0.8; }
.crdd-section { margin-bottom: 30px; border: 1px solid #333; padding: 15px; background: #0f0f14; }
.crdd-section-title { background: #21b0cd; color: #000; padding: 5px 10px; font-weight: bold; display: inline-block; margin-bottom: 15px; }
.crdd-input-group { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.crdd-input-group label { flex: 1; font-size: 0.9em; }
.crdd-range { flex: 2; margin: 0 15px; accent-color: #21b0cd; }
.crdd-value-display { width: 30px; text-align: right; font-weight: bold; }
.crdd-skip-label { display: block; margin-bottom: 15px; color: #666; font-size: 0.8em; cursor: pointer; }
#crdd-final-result { border-top: 2px solid #21b0cd; padding-top: 20px; margin-top: 20px; text-align: center; font-size: 1.2em; font-weight: bold; min-height: 100px; display: flex; flex-direction: column; justify-content: center; align-items: center; background: #0d1a1d; }
.crdd-rating-text { font-size: 2em; text-shadow: 0 0 10px currentColor; margin-top: 10px; }
@media only screen and (max-width: 768px) {
.crdd-input-group { display: flex !important; flex-direction: column !important; align-items: flex-start !important; margin-bottom: 25px !important; width: 100% !important; }
.crdd-input-group label { width: 100% !important; margin-bottom: 10px !important; font-size: 1.2em !important; }
.crdd-range { width: 100% !important; margin: 10px 0 !important; height: 40px !important; }
.crdd-value-display { width: 100% !important; text-align: right !important; font-size: 1.2em !important; color: #fff !important; }
#crdd-interface { padding: 10px !important; width: 100% !important; box-sizing: border-box !important; }
}
/* ============================================================
SPLASH SCREEN (FULLSCREEN OVERRIDE & VARIABLES)
============================================================ */
/* 1. HIDE ALL INTERFACE ELEMENTS */
body.page-Warning #mw-navigation, /* The Sidebar */
body.page-Warning #mw-navbar, /* The Header */
body.page-Warning .navbar, /* Bootstrap Header */
body.page-Warning .mw-footer, /* The Footer */
body.page-Warning .sidebar, /* Legacy Sidebar */
body.page-Warning aside, /* Edit Tools */
body.page-Warning #catlinks { /* Categories */
display: none !important;
}
/* 2. REMOVE PADDING/MARGINS FROM BODY */
body.page-Warning #content,
body.page-Warning .mw-body {
margin: 0 !important;
padding: 0 !important;
border: none !important; /* Remove the Purple Left Border */
box-shadow: none !important;
background: transparent !important;
}
/* 3. THE FULLSCREEN CONTAINER */
body.page-Warning .splash-container {
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
background-color: var(--void-bg) !important;
z-index: 2147483647 !important; /* Maximum Integer Value */
display: flex !important;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0 !important;
padding: 20px !important;
box-sizing: border-box !important;
}
/* 4. INNER BOX STYLING */
.splash-inner-wrapper {
width: 100%;
max-width: 500px;
border: 1px solid #333;
border-top: 4px solid var(--void-accent); /* Uses the Dynamic Variable */
background: var(--void-card);
padding: 30px;
box-shadow: 0 0 30px rgba(0,0,0,0.8);
text-align: center;
}
/* 5. TEXT & BUTTONS */
.splash-title {
font-family: 'Consolas', monospace;
font-size: 2em;
color: #fff;
margin-bottom: 5px;
text-shadow: 0 0 10px var(--void-accent);
}
.splash-subtitle {
color: var(--void-accent);
font-size: 0.8em;
letter-spacing: 2px;
margin-bottom: 30px;
text-transform: uppercase;
}
.splash-btn {
display: inline-block;
border: 1px solid var(--void-accent);
padding: 12px 24px;
color: #fff !important;
text-decoration: none;
font-family: 'Consolas', monospace;
margin: 20px 0;
transition: all 0.3s;
}
.splash-btn:hover {
background: var(--void-accent);
color: #000 !important;
box-shadow: 0 0 15px var(--void-accent);
}
/* 6. VARIABLE MAPPING (Fixes the Gold/Blue Randomizer) */
body.splash-gold {
--void-accent: #DAA520 !important;
--void-hover: rgba(218, 165, 32, 0.4) !important;
}
body.splash-blue {
--void-accent: #21b0cd !important;
--void-hover: rgba(33, 176, 205, 0.4) !important;
}
body.splash-purple {
--void-accent: #a020f0 !important;
--void-hover: rgba(160, 32, 240, 0.4) !important;
}
/* ============================================================
HOME PAGE NAVIGATION
============================================================ */
.nav-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.nav-card { position: relative; background-color: #0f0f14; border: 1px solid #333; height: 120px; overflow: hidden; text-decoration: none !important; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: all 0.3s ease; }
.nav-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.1; transition: opacity 0.3s ease, transform 0.5s ease; z-index: 1; filter: grayscale(100%); }
.nav-content { z-index: 2; text-align: center; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.nav-title { font-family: 'Consolas', monospace; font-size: 1.2em; font-weight: bold; color: #fff; display: block; background: rgba(0,0,0,0.6); padding: 5px 10px; }
.nav-sub { font-family: 'Arial', sans-serif; font-size: 0.7em; color: #aaa; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; display: block; }
.nav-card:hover { border-color: var(--void-accent); box-shadow: 0 0 15px var(--void-accent); transform: translateY(-2px); }
.nav-card:hover .nav-bg { opacity: 0.5; transform: scale(1.1); filter: grayscale(0%); }
.nav-card:hover .nav-title { color: var(--void-accent); background: #000; }
/* ============================================================
PERSONNEL FILE
============================================================ */
.personnel-file { background-color: #0f0f14; border: 1px solid #333; border-top: 4px solid var(--void-accent); max-width: 600px; margin: 0 auto; font-family: 'Consolas', monospace; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.id-header { background-color: #1a1a24; padding: 10px 15px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; font-size: 0.9em; color: #888; letter-spacing: 1px; }
.id-clearance { color: var(--void-accent); font-weight: bold; border: 1px solid var(--void-accent); padding: 0 5px; border-radius: 3px; }
.id-body { padding: 20px; display: flex; align-items: center; gap: 20px; }
.void-avatar { width: 100px; height: 100px; background-color: #000; border: 1px solid #333; display: flex; align-items: center; justify-content: center; color: #333; font-size: 2em; }
.id-details h2 { margin: 0 0 10px 0; font-size: 1.5em; color: #fff !important; border: none; text-shadow: 0 0 10px var(--void-accent); }
.id-details ul { list-style: none; margin: 0; padding: 0; font-size: 0.9em; color: #ccc; }
.id-details li { margin-bottom: 5px; }
.id-details strong { color: var(--void-accent); margin-right: 5px; }
@media (max-width: 600px) { .id-body { flex-direction: column; text-align: center; } }
/* ============================================================
CONVENIENT DISCUSSIONS (VOID THEME PATCH)
============================================================ */
/* 1. Comment Layers & Backgrounds */
.cd-comment-part,
.cd-comment-part-first,
.cd-comment-part-last {
background-color: transparent !important;
color: var(--void-text) !important;
}
/* 2. The "Reply" Button */
.cd-replyButton {
font-family: 'Consolas', monospace;
font-weight: bold;
text-transform: uppercase;
font-size: 0.8em;
color: var(--void-accent) !important;
opacity: 0.7;
}
.cd-replyButton:hover {
opacity: 1;
text-shadow: 0 0 5px var(--void-accent);
}
/* 3. The Reply Form (Text Area) */
.cd-commentForm-panel {
background-color: var(--void-card) !important;
border: 1px solid var(--void-accent) !important;
padding: 15px;
}
.cd-commentForm-textarea {
background-color: #050505 !important;
color: #00ff9f !important; /* Terminal Green Typing */
border: 1px solid #333 !important;
font-family: 'Consolas', monospace !important;
}
/* 4. Form Buttons (Reply / Cancel) */
.cd-button-action, .oo-ui-buttonElement-button {
background-color: #1a1a24 !important;
color: #fff !important;
border: 1px solid var(--void-accent) !important;
}
/* 5. Popups & Dialogs */
.cd-dialog-panel, .oo-ui-window-frame {
background-color: var(--void-bg) !important;
border: 1px solid var(--void-accent) !important;
color: var(--void-text) !important;
}
/* 6. Thread Lines (The visual threading on the left) */
.cd-thread-line {
border-left-color: #333 !important;
}
.cd-thread-line:hover {
border-left-color: var(--void-accent) !important;
}
/* ============================================================
CONVENIENT DISCUSSIONS: DEEP THEME PATCH
============================================================ */
/* 1. THE PREVIEW BOX (Kill the white stripes) */
.cd-preview-content,
.mw-parser-output {
background-color: #13131a !important; /* Dark Grey */
color: #d1d1d1 !important;
border: 1px solid #a020f0 !important; /* Purple Border */
}
/* 2. THE "CHANGES" (DIFF) VIEW */
/* The Container */
table.diff {
background-color: #0a0a0f !important;
border: none !important;
width: 100% !important;
}
/* The Context (Grey Lines) */
.diff-context {
background-color: #13131a !important;
color: #666 !important;
border-color: #333 !important;
}
/* Added Lines (Green) - Dark Mode Version */
.diff-addedline {
background-color: rgba(0, 255, 159, 0.1) !important;
border-color: #00ff9f !important;
}
.diff-addedline .diffchange {
background-color: rgba(0, 255, 159, 0.3) !important;
color: #fff !important;
}
/* Deleted Lines (Red) - Dark Mode Version */
.diff-deletedline {
background-color: rgba(255, 0, 0, 0.1) !important;
border-color: #ff0000 !important;
}
.diff-deletedline .diffchange {
background-color: rgba(255, 0, 0, 0.3) !important;
color: #fff !important;
}
/* 3. SETTINGS SCROLLBAR (Webkit/Chrome) */
/* Forces the scrollbar inside the settings dialog to be dark */
.cd-dialog-panel ::-webkit-scrollbar {
width: 10px;
background: #0a0a0f;
}
.cd-dialog-panel ::-webkit-scrollbar-thumb {
background: #a020f0;
border-radius: 5px;
}
.cd-dialog-panel ::-webkit-scrollbar-track {
background: #13131a;
}