Jump to content

MediaWiki:Common.css: Difference between revisions

From Meridian-Arch Wiki
No edit summary
Tag: Reverted
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
:root {
body {
    /* 1. Primary Backgrounds */
     background-color: #040a12 !important;
     --background-color-base: #0b0f0b;         /* Main page background */
     color: #c7d9ed !important;
     --background-color-interactive-subtle: #121a12; /* Sidebar, boxes, cards */
     font-family: Arial, sans-serif !important;
     --background-color-interactive: #1a261a;   /* Button hover states */
}
   
#firstHeading, .mw-page-title-main {
    /* 2. Text & Content Colors */
    color: #c7d9ed !important;
     --color-base: #00ff66;                     /* Standard body text color */
}
     --color-emphasized: #33ff88;               /* Titles, bold text, headers */
#content, .mw-body {
     --color-subtle: #00aa44;                   /* Muted/secondary text */
     background-color: #040a12 !important;
      
     color: #c7d9ed !important;
    /* 3. Links */
    border: 1px solid #d0d5dd !important;
     --color-link: #33ff99;                     /* Standard links */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
     --color-link--visited: #00b34a;           /* Visited links */
}
     --color-link--red: #ff3344;               /* Missing page / red links */
 
   
h1, h2, h3 {
    /* 4. Borders & Lines */
     color: #c7d9ed !important;
     --border-color-base: #003311;             /* Dividers and borders */
     border-bottom: 2px solid #cbd5e1 !important;
     --border-color-interactive: #006622;       /* Active borders */
}
 
a {
     color: #c7d9ed !important;
}
 
/* Tables */
.wikitable th {
     background-color: #090f23 !important;
     color: #c7d9ed !important;
}
 
.wikitable td {
     background-color: #090f23 !important;
    color: #c7d9ed !important;
     border-color: #7db3e8 !important;
}
}

Revision as of 07:00, 28 July 2026

:root {
    /* 1. Primary Backgrounds */
    --background-color-base: #0b0f0b;          /* Main page background */
    --background-color-interactive-subtle: #121a12; /* Sidebar, boxes, cards */
    --background-color-interactive: #1a261a;   /* Button hover states */
    
    /* 2. Text & Content Colors */
    --color-base: #00ff66;                     /* Standard body text color */
    --color-emphasized: #33ff88;               /* Titles, bold text, headers */
    --color-subtle: #00aa44;                   /* Muted/secondary text */
    
    /* 3. Links */
    --color-link: #33ff99;                     /* Standard links */
    --color-link--visited: #00b34a;            /* Visited links */
    --color-link--red: #ff3344;                /* Missing page / red links */
    
    /* 4. Borders & Lines */
    --border-color-base: #003311;              /* Dividers and borders */
    --border-color-interactive: #006622;       /* Active borders */
}