MediaWiki:Common.css

From The Chaakat Holocron

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.
/* ===================================================
   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;
}