Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 76: Line 76:
     font-family: 'Courier New', monospace, sans-serif !important;
     font-family: 'Courier New', monospace, sans-serif !important;
     border-bottom: 2px solid var(--trauma-accent-olive) !important;
     border-bottom: 2px solid var(--trauma-accent-olive) !important;
}
h2 {
    color: var(--trauma-accent-olive) !important;
    font-family: 'Courier New', monospace, sans-serif !important;
    border-bottom: 1px solid var(--trauma-border-rust) !important;
}
h3 {
    color: var(--trauma-border-rust) !important;
    font-style: italic;
}
}

Revision as of 23:35, 17 April 2026

/* CSS placed here will be applied to all skins */

:root {
    --color-progressive-oklch__l: 45%;  
    --color-progressive-oklch__c: 0.15; 
    --color-progressive-oklch__h: 30;   

    --font-family-citizen-emphasized: 'Courier New', monospace, sans-serif;
}

/* Logo Class */
.logo img {
  width: 600px;
  transition: width 0.5s ease-in-out;
}

.logo img:hover {
  width: 650px;
}

/* Citizen Theme Overrides */
.skin-theme-clientpref-day {

    --color-surface-0: #e0ded9; 
    --color-surface-1: #fcfbf7; 
    --color-surface-2: #f0eee9; 
    --color-surface-3: #e8e6e1; 
    --color-surface-4: #d4d1c9; 

    --color-base: #2e2e2e;
    --color-emphasized: #8b0000;
    --color-subtle: #575231;
    
    --border-color-base: #7a3c26;
}

.skin-theme-clientpref-night {

    --color-surface-0: #211c1c; 
    --color-surface-1: #2b2323; 
    --color-surface-2: #362c2c;
    --color-surface-3: #403434; 
    --color-surface-4: #4a3c3c;

    --color-base: #d1c9bd; 
    --color-emphasized: #b24141; 
    --color-subtle: #8b8d4d; 

    --border-color-base: #5c2a1a; 
}

/* WikiTable Overrides */
table.wikitable {
    background-color: var(--color-surface-1) !important;
    border: 1px solid var(--border-color-base) !important;
    color: var(--color-base) !important;
}

table.wikitable > tr > th,
table.wikitable > tr > td,
table.wikitable > * > tr > th,
table.wikitable > * > tr > td {
    border: 1px solid var(--border-color-base) !important;
}

table.wikitable > tr > th,
table.wikitable > * > tr > th {
    background-color: var(--color-surface-2) !important;
    color: var(--color-emphasized) !important;
    font-family: var(--font-family-citizen-emphasized, inherit);
}

/* Header Overrides */
h1, #firstHeading {
    color: var(--trauma-accent-red) !important;
    font-family: 'Courier New', monospace, sans-serif !important;
    border-bottom: 2px solid var(--trauma-accent-olive) !important;
}