MediaWiki:Timeless.css: Difference between revisions

From Access Tech Central
No edit summary
No edit summary
Line 1: Line 1:
/* TIMELESS TOTAL BLACKOUT - FOR ACCESSTECHCENTRAL.COM */
/* TIMELESS TOTAL BLACKOUT - FOR ACCESSTECHCENTRAL.COM */


/* 1. The Global Foundation - Forces all background layers to black */
/* 1. The Global Foundation - Forces all background layers and "Hacks" to black */
html, body,  
html, body,  
#mw-wrapper,
#mw-wrapper,  
#mw-header-container,  
#mw-header-container,  
#personal-inner,  
#mw-header-hack,  
.dropdown,
#mw-header-nav-hack,
.mw-content-text #mw-content-text #mw-content,  
#menus-cover,
#mw-content-container,  
#mw-content-container,  
#mw-content-block,  
#mw-content-block,  
#content,
#mw-content-wrapper,
#mw-content-wrapper,  
#mw-footer-container,  
#mw-header-nav-hack,  
#bodyContentOuter,  
#bodyContentOuter,  
#mw-body,
#personal-inner,  
.mw-body,  
.dropdown,  
.mw-code,  
.ts-container,  
.editOptions,
.ts-inner,  
#editOptions,
.mw-body {
#mw-footer-container,  
.ts-container,
.ts-inner {
     background-color: #000000 !important;
     background-color: #000000 !important;
     background-image: none !important; /* Forces the white pattern to vanish */
     background-image: none !important; /* Critical to kill the white pattern */
     color: #ffffff !important;
     color: #ffffff !important;
}
}


/* 2. Sidebars and Nav Boxes - Fixes those stubborn white blocks */
/* 2. Sidebars and Nav Boxes - Targets navigation columns */
#mw-site-navigation,  
#mw-site-navigation,  
#mw-related-navigation,  
#mw-related-navigation,  
Line 38: Line 34:
}
}


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


Line 56: Line 52:
}
}


/* 5. Hide the broken Logo box */
/* 5. Form Fields & Input - Targets editing and search areas */
.mw-wiki-logo, #p-logo {
    display: none !important;
    background: none !important;
}
 
/* 6. Form Fields & Editing - Targets input fields, textareas, and buttons */
input, textarea, select, .mw-ui-input, #wpTextbox1 {
input, textarea, select, .mw-ui-input, #wpTextbox1 {
     background-color: #121212 !important;
     background-color: #121212 !important;
Line 68: Line 58:
     border: 2px solid #FFFF00 !important;
     border: 2px solid #FFFF00 !important;
     padding: 8px !important;
     padding: 8px !important;
    font-size: 1.1rem !important;
}
}


/* Focus State - Cyan border when active for tracking */
/* 6. Logo & Cleanup - Hides broken logo and white glow */
input:focus, textarea:focus {
.mw-wiki-logo, #p-logo {
    background-color: #000000 !important;
     display: none !important;
    border-color: #00FFFF !important;
     background: none !important;  
     outline: none !important;
}
 
/* Button styling */
button, .mw-ui-button {
     background-color: #222222 !important;
    color: #FFFF00 !important;
    cursor: pointer;
}
}

Revision as of 07:04, 20 February 2026

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

/* 1. The Global Foundation - Forces all background layers and "Hacks" to black */
html, body, 
#mw-wrapper, 
#mw-header-container, 
#mw-header-hack, 
#mw-header-nav-hack, 
#menus-cover,
#mw-content-container, 
#mw-content-block, 
#mw-content-wrapper,
#mw-footer-container, 
#bodyContentOuter, 
#personal-inner, 
.dropdown, 
.ts-container, 
.ts-inner, 
.mw-body {
    background-color: #000000 !important;
    background-image: none !important; /* Critical to kill the white pattern */
    color: #ffffff !important;
}

/* 2. Sidebars and Nav Boxes - Targets navigation columns */
#mw-site-navigation, 
#mw-related-navigation, 
.sidebar-chunk, 
.mw-portlet, 
.portlet {
    background-color: #000000 !important;
    background-image: none !important;
    border: 1px solid #333333 !important;
}

/* 3. The Central Content Box - High contrast for screen readers */
#content {
    background-color: #111111 !important; 
    color: #ffffff !important;
    border: 1px solid #444444 !important;
    max-width: 1400px !important; 
    line-height: 1.8 !important;   
    font-size: 1.15rem !important; 
}

/* 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. Form Fields & Input - Targets editing and search areas */
input, textarea, select, .mw-ui-input, #wpTextbox1 {
    background-color: #121212 !important;
    color: #ffffff !important;
    border: 2px solid #FFFF00 !important;
    padding: 8px !important;
}

/* 6. Logo & Cleanup - Hides broken logo and white glow */
.mw-wiki-logo, #p-logo { 
    display: none !important;
    background: none !important; 
}