MediaWiki:Common.css: Difference between revisions
From The Chaakat Holocron
Blanked the page Tag: Blanking |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* =================================================== | |||
SITH HOLOCRON THEME OVERRIDES | |||
=================================================== */ | |||
/* 1. Sith Red Links */ | |||
a { | |||
color: #E62222 !important; | |||
text-decoration: none; | |||
transition: color 0.2s ease-in-out; | |||
} | |||
/* Link Hover State (Glowing effect) */ | |||
a:hover { | |||
color: #FF5500 !important; | |||
text-shadow: 0 0 6px rgba(255, 85, 0, 0.4); | |||
} | |||
/* Visited Links */ | |||
a:visited { | |||
color: #991111 !important; | |||
} | |||
/* 2. Top Header & Navigation Bars Override */ | |||
/* Removes the pink/blue/teal colors and replaces them with Dark Sith Red accents */ | |||
.mw-header, | |||
#mw-header-container, | |||
#header, | |||
#top-bar, | |||
.citizen-header { | |||
border-top: 2px solid #B30000 !important; /* Sith Red accent bar */ | |||
border-bottom: 1px solid #330000 !important; | |||
box-shadow: none !important; | |||
} | |||
/* 3. Footer Accent Bar */ | |||
#footer, | |||
.mw-footer { | |||
border-top: 2px solid #B30000 !important; /* Replaces the teal line with Sith Red */ | |||
} | |||
/* Optional: If using the Citizen Skin, override root variables */ | |||
:root { | |||
--color-primary: #E62222; | |||
--color-primary--hover: #FF5500; | |||
--border-color-base: #330000; | |||
} | |||
Revision as of 15:14, 1 August 2026
/* ===================================================
SITH HOLOCRON THEME OVERRIDES
=================================================== */
/* 1. Sith Red Links */
a {
color: #E62222 !important;
text-decoration: none;
transition: color 0.2s ease-in-out;
}
/* Link Hover State (Glowing effect) */
a:hover {
color: #FF5500 !important;
text-shadow: 0 0 6px rgba(255, 85, 0, 0.4);
}
/* Visited Links */
a:visited {
color: #991111 !important;
}
/* 2. Top Header & Navigation Bars Override */
/* Removes the pink/blue/teal colors and replaces them with Dark Sith Red accents */
.mw-header,
#mw-header-container,
#header,
#top-bar,
.citizen-header {
border-top: 2px solid #B30000 !important; /* Sith Red accent bar */
border-bottom: 1px solid #330000 !important;
box-shadow: none !important;
}
/* 3. Footer Accent Bar */
#footer,
.mw-footer {
border-top: 2px solid #B30000 !important; /* Replaces the teal line with Sith Red */
}
/* Optional: If using the Citizen Skin, override root variables */
:root {
--color-primary: #E62222;
--color-primary--hover: #FF5500;
--border-color-base: #330000;
}
