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. UNIVERSAL FOUNDATION - Forces all layers to black with white text */
/* 1. The Global Foundation - Forces all background layers to black */
html, body, body.skin-timeless,
html, body,  
#mw-wrapper,  
#mw-wrapper,  
#mw-header,
#mw-header-container,  
#mw-header-container,  
#mw-header-hack,  
#mw-header-hack,  
Line 10: Line 9:
#menus-cover,
#menus-cover,
#user-tools,
#user-tools,
#personal-inner,
#personal-inner,
.dropdown,  
#mw-content-container,  
#mw-content-container,  
#mw-content-block,  
#mw-content-block,  
#mw-content-wrapper,
#mw-content-wrapper,  
#mw-body,
#mw-body,
.mw-body,  
#mw-body-content,
#mw-body-content,
.mw-content-ltr,
#bodyContentOuter,  
#bodyContentOuter,  
#bodyContent,
#bodyContent,
#mw-footer-container,
.mw-code,
#mw-indicator,
#mw-code,
.mw-css,  
#mw-css,
#mw-css,
#mw-code,
.editOptions,  
#editOptions,
#editOptions,  
#editpage-copywarn,
#editpage-copywarn,
.mw-body,
#mw-footer-container,  
.mw-body-content,
.mw-content-ltr,
.mw-content-text,
.mw-indicators,
.mw-code,
.mw-css,
.ts-container,  
.ts-container,  
.ts-inner,  
.ts-inner,
.dropdown,
.mw-indicators {
.editOptions {
     background-color: #000000 !important;
     background-color: #000000 !important;
     background-image: none !important; /* Forces the white pattern to vanish */
     background-image: none !important; /* Kills the white pattern */
     color: #ffffff !important;
     color: #ffffff !important;
}
}


/* 2. SIDEBARS & NAVIGATION - Restored blocks */
/* 2. Sidebars and Nav Boxes - Fixes those stubborn white blocks */
#mw-site-navigation,  
#mw-site-navigation, #mw-related-navigation, .sidebar-chunk, .mw-portlet, .portlet, .sidebar-inner {
#mw-related-navigation,  
.sidebar-chunk,  
.sidebar-inner,
.mw-portlet,  
.portlet {
     background-color: #000000 !important;
     background-color: #000000 !important;
     background-image: none !important;
     background-image: none !important;
Line 52: Line 43:
}
}


/* 3. THE CENTRAL CONTENT BOX - Your original 111111 background */
/* 3. The Central Content Box - Your original #111111 style */
#content {
#content {
     background-color: #111111 !important;  
     background-color: #111111 !important;  
Line 58: Line 49:
     border: 1px solid #444444 !important;
     border: 1px solid #444444 !important;
     max-width: 1400px !important;  
     max-width: 1400px !important;  
     line-height: 1.8 !important;   
     line-height: 1.8 !important;  /* */
     font-size: 1.15rem !important;  
     font-size: 1.15rem !important; /* */
}
 
/* 4. SEARCH BAR - Restored search visibility */
#searchInput, #searchform, #searchButton, .mw-searchInput, #simpleSearch {
    background-color: #121212 !important;
    color: #ffffff !important;
    border: 2px solid #FFFF00 !important;
    visibility: visible !important;
    display: inline-block !important;
}
}


/* 5. ACCESSIBILITY LINKS - Cyan and Magenta Palette */
/* 4. Accessibility Links - Cyan and Magenta */
a { color: #00FFFF !important; font-weight: bold !important; }
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;
}
/* 6. INPUT FIELDS & TEXT AREAS */
input, textarea, select, .mw-ui-input, #wpTextbox1, .ace_editor {
    background-color: #121212 !important;
    color: #ffffff !important;
    border: 2px solid #FFFF00 !important;
    padding: 8px !important;
}
/* 7. LOGO CLEANUP */
.mw-wiki-logo, #p-logo-text {
    display: none !important;
}
#p-logo {
    background: none !important;
    background-color: transparent !important;
}

Revision as of 07:19, 20 February 2026

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

/* 1. The Global Foundation - Forces all background layers to black */
html, body, 
#mw-wrapper, 
#mw-header-container, 
#mw-header-hack, 
#mw-header-nav-hack, 
#menus-cover,
#user-tools,
#personal-inner, 
.dropdown, 
#mw-content-container, 
#mw-content-block, 
#mw-content-wrapper, 
#mw-body, 
.mw-body, 
#mw-body-content,
.mw-content-ltr,
#bodyContentOuter, 
#bodyContent,
.mw-code, 
#mw-code,
.mw-css, 
#mw-css,
.editOptions, 
#editOptions, 
#editpage-copywarn,
#mw-footer-container, 
.ts-container, 
.ts-inner,
.mw-indicators {
    background-color: #000000 !important;
    background-image: none !important; /* Kills the white pattern */
    color: #ffffff !important;
}

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

/* 3. The Central Content Box - Your original #111111 style */
#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 - Cyan and Magenta */
a { color: #00FFFF !important; font-weight: bold !important; }