MediaWiki:Common.css: Difference between revisions

From The Chaakat Holocron
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
/* ===================================================
/* ===================================================
   SITH HOLOCRON THEME OVERRIDES
   SITH HOLOCRON FULL COLOR OVERRIDES
   =================================================== */
   =================================================== */


/* 1. Sith Red Links */
/* 1. Header Accents & Colored Strips */
a {
/* Fixes the pink left line and blue top-right bar */
   color: #E62222 !important;
.citizen-header,
  text-decoration: none;
#mw-header-container,
  transition: color 0.2s ease-in-out;
#header,
#top-bar {
   border-top: 2px solid #8B0000 !important; /* Unified Sith Red top border */
}
}


/* Link Hover State (Glowing effect) */
/* Remove colored pseudo-elements if skin uses ::before/::after for top lines */
a:hover {
.citizen-header::before,
   color: #FF5500 !important;
.citizen-header::after,
  text-shadow: 0 0 6px rgba(255, 85, 0, 0.4);
#mw-header-container::before,
#mw-header-container::after {
   background-color: #8B0000 !important;
}
}


/* Visited Links */
 
a:visited {
/* 2. Main Page Title Underline */
   color: #991111 !important;
/* Changes the blue line under "Main Page" to Sith Red */
.firstHeading,
#firstHeading,
.mw-page-title-main {
   border-bottom: 2px solid #8B0000 !important;
}
}




/* 2. Top Header & Navigation Bars Override */
/* 3. Dark Sith Footer & Divider */
/* Removes the pink/blue/teal colors and replaces them with Dark Sith Red accents */
/* Replaces the bright grey background and green line */
.mw-header,
#footer,  
#mw-header-container,
.mw-footer,
#header,
.citizen-footer {
#top-bar,
   background-color: #0d0d0d !important;  /* Obsidian / Dark Grey-Black */
.citizen-header {
  color: #a0a0a0 !important;             /* Muted grey footer text */
   border-top: 2px solid #B30000 !important; /* Sith Red accent bar */
   border-top: 2px solid #8B0000 !important; /* Replaces green bar with Sith Red */
   border-bottom: 1px solid #330000 !important;
}
   box-shadow: none !important;
 
/* Footer text links */
#footer a,
.mw-footer a {
   color: #cc2222 !important;
}
}


/* 3. Footer Accent Bar */
#footer a:hover,  
#footer,  
.mw-footer a:hover {
.mw-footer {
   color: #ff5500 !important;
   border-top: 2px solid #B30000 !important; /* Replaces the teal line with Sith Red */
}
}




/* Optional: If using the Citizen Skin, override root variables */
/* 4. Search Bar Focus / Outline (Optional polish) */
:root {
#searchInput:focus,
  --color-primary: #E62222;
.citizen-search-input:focus {
   --color-primary--hover: #FF5500;
   border-color: #8B0000 !important;
   --border-color-base: #330000;
   box-shadow: 0 0 5px rgba(139, 0, 0, 0.6) !important;
}
}

Revision as of 15:16, 1 August 2026

/* ===================================================
   SITH HOLOCRON FULL COLOR OVERRIDES
   =================================================== */

/* 1. Header Accents & Colored Strips */
/* Fixes the pink left line and blue top-right bar */
.citizen-header,
#mw-header-container,
#header,
#top-bar {
  border-top: 2px solid #8B0000 !important; /* Unified Sith Red top border */
}

/* Remove colored pseudo-elements if skin uses ::before/::after for top lines */
.citizen-header::before,
.citizen-header::after,
#mw-header-container::before,
#mw-header-container::after {
  background-color: #8B0000 !important;
}


/* 2. Main Page Title Underline */
/* Changes the blue line under "Main Page" to Sith Red */
.firstHeading, 
#firstHeading,
.mw-page-title-main {
  border-bottom: 2px solid #8B0000 !important;
}


/* 3. Dark Sith Footer & Divider */
/* Replaces the bright grey background and green line */
#footer, 
.mw-footer,
.citizen-footer {
  background-color: #0d0d0d !important;  /* Obsidian / Dark Grey-Black */
  color: #a0a0a0 !important;             /* Muted grey footer text */
  border-top: 2px solid #8B0000 !important; /* Replaces green bar with Sith Red */
}

/* Footer text links */
#footer a, 
.mw-footer a {
  color: #cc2222 !important;
}

#footer a:hover, 
.mw-footer a:hover {
  color: #ff5500 !important;
}


/* 4. Search Bar Focus / Outline (Optional polish) */
#searchInput:focus,
.citizen-search-input:focus {
  border-color: #8B0000 !important;
  box-shadow: 0 0 5px rgba(139, 0, 0, 0.6) !important;
}