MediaWiki:Timeless.css: Difference between revisions

From Access Tech Central
No edit summary
No edit summary
Line 1: Line 1:
/* 1. Global Reset - Fixes the big white background behind everything */
/* TIMELESS TOTAL BLACKOUT - FOR ACCESSTECHCENTRAL.COM */
html, body, .mw-body, #mw-content-container, #mw-site-navigation, #mw-related-navigation {
 
/* 1. The Global Foundation - Forces all background layers to black */
html, body, #mw-content-container, #mw-header-container, #mw-footer-container, .mw-body {
     background-color: #000000 !important;
     background-color: #000000 !important;
     color: #ffffff !important;
     color: #ffffff !important;
}
}


/* 2. Fixes the Header (Top) and Footer (Bottom) */
/* 2. Sidebars and Nav Boxes - Fixes those stubborn white blocks */
#mw-header-container, #mw-footer-container {
#mw-site-navigation, #mw-related-navigation, .sidebar-chunk, .mw-portlet, .portlet {
     background-color: #000000 !important;
     background-color: #000000 !important;
     border-bottom: 2px solid #FFFF00 !important; /* Yellow high-contrast line */
     border: 1px solid #333333 !important;
}
}


/* 3. The Main Content Box - Fixes the white square around your text */
/* 3. The Central Content Box - High contrast for easier reading */
#content {
#content {
     background-color: #121212 !important; /* Slightly lighter so text pops */
     background-color: #111111 !important; /* Slightly lighter black for depth */
    color: #ffffff !important;
    border: 1px solid #333333 !important;
    max-width: 1400px !important; /* Increases width as requested */
    line-height: 1.8 !important;  /* Best for screen readers */
}
 
/* 4. Navigation Boxes - Fixes the white boxes in the sidebar */
.sidebar-chunk, .mw-portlet {
    background-color: #121212 !important;
    border: 1px solid #444 !important;
     color: #ffffff !important;
     color: #ffffff !important;
    border: 1px solid #444444 !important;
    max-width: 1400px !important; /* Extra width for tech data */
    line-height: 1.8 !important;  /* Optimized for screen readers */
    font-size: 1.15rem !important; /* Increased for accessibility */
}
}


/* 5. High-Contrast Link Colors */
/* 4. Accessibility Links - Bright cyan for visibility */
a { color: #00FFFF !important; }       /* Cyan links */
a { color: #00FFFF !important; font-weight: bold !important; }
a:visited { color: #FF00FF !important; } /* Magenta links */
a:visited { color: #FF00FF !important; }
.mw-body h1, .mw-body h2 { color: #FFFF00 !important; border-bottom: 2px solid #FFFF00 !important; }


/* 6. Hide the "Set $wgLogos" error box */
/* 5. Hide the broken Logo box */
.mw-wiki-logo { display: none !important; }
.mw-wiki-logo { display: none !important; }
#p-logo { background: none !important; }

Revision as of 06:36, 20 February 2026

/* TIMELESS TOTAL BLACKOUT - FOR ACCESSTECHCENTRAL.COM */

/* 1. The Global Foundation - Forces all background layers to black */
html, body, #mw-content-container, #mw-header-container, #mw-footer-container, .mw-body {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* 2. Sidebars and Nav Boxes - Fixes those stubborn white blocks */
#mw-site-navigation, #mw-related-navigation, .sidebar-chunk, .mw-portlet, .portlet {
    background-color: #000000 !important;
    border: 1px solid #333333 !important;
}

/* 3. The Central Content Box - High contrast for easier reading */
#content {
    background-color: #111111 !important; /* Slightly lighter black for depth */
    color: #ffffff !important;
    border: 1px solid #444444 !important;
    max-width: 1400px !important; /* Extra width for tech data */
    line-height: 1.8 !important;   /* Optimized for screen readers */
    font-size: 1.15rem !important; /* Increased for accessibility */
}

/* 4. Accessibility Links - Bright cyan for visibility */
a { color: #00FFFF !important; font-weight: bold !important; }
a:visited { color: #FF00FF !important; }
.mw-body h1, .mw-body h2 { color: #FFFF00 !important; border-bottom: 2px solid #FFFF00 !important; }

/* 5. Hide the broken Logo box */
.mw-wiki-logo { display: none !important; }
#p-logo { background: none !important; }