MediaWiki:Timeless.css: Difference between revisions

From Access Tech Central
No edit summary
No edit summary
 
(38 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* TIMELESS TOTAL BLACKOUT - FOR ACCESSTECHCENTRAL.COM */
/* 1. UNIVERSAL FORCE - Targets every single element regardless of ID */
*,
*::before,
*::after {
    background-color: #111111 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #99c4c4 !important;
}
 
/* 2. RE-ESTABLISH YOUR PREFERENCES - Prevents the universal rule from breaking your gray search and content boxes */
#content {
    background-color: #333333 !important;
}


/* 1. THE GLOBAL FOUNDATION - Every ID/Class from our entire hunt */
#searchInput {
html, body, body.skin-timeless,
     background-color: #333333 !important;
#mw-wrapper,
#mw-header,
#mw-header-container,
#mw-header-hack,
#mw-header-nav-hack,
#menus-cover,
#user-tools,
#personal-inner,
#mw-content-container,
#mw-content-block,
#mw-content-wrapper,
#mw-body,
#mw-body-content,
#bodyContentOuter,
#bodyContent,
#mw-footer-container,
#mw-indicator,
#mw-css,
#mw-code,
#editOptions,
#editpage-copywarn,
.mw-body,
.mw-body-content,
.mw-content-ltr,
.mw-content-text,
.mw-indicators,
.mw-code,
.mw-css,
.ts-container,
.ts-inner,
.dropdown,
.editOptions {
     background-color: #000000 !important;
    background-image: none !important; /* Forces the white pattern to vanish */
    color: #ffffff !important;
}
}


/* 2. SIDEBARS & NAVIGATION - Restored blocks and inner containers */
/* 3. Keep your links and headers readable */
#mw-site-navigation,
a { color: #00ffff !important; }
#mw-related-navigation,
a:visited { color: #FF00FF !important; }
.sidebar-chunk,  
h1, h2, h3, h4 {
.sidebar-inner,
font-weight: bold;
.mw-portlet,  
color: #fff698 !important; }
.portlet {
 
    background-color: #000000 !important;
 
     background-image: none !important;
/* 2. BIG FONT & SPACING - Global Text Increase */
     border: 1px solid #333333 !important;
html, body, p, div, li, span, a {
     font-size: 1.1rem !important; /* Larger text for easier reading */
     line-height: 1.6 !important;   /* Better spacing for screen readers */
}
}


/* 3. THE SEARCH BAR - Restoring visibility for the search input and button */
 
#searchInput,  
 
#searchform,
 
#searchButton,
 
.mw-searchInput,
 
#simpleSearch {
/* 1. Target both the class and ID correctly */
     background-color: #121212 !important; /* Dark but distinct from page background */
.searchButton, #searchButton {
    color: #ffffff !important;
     background-color: #333333 !important; /* Dark gray to match your field */
     border: 2px solid #FFFF00 !important; /* Yellow border for screen reader focus */
     border: 1px solid #FFFF00 !important; /* Yellow border for accessibility */
     display: inline-block !important;     /* Forces it to show up */
     min-width: 45px !important;           /* Makes the button a larger target */
     visibility: visible !important;
     cursor: pointer;
}
}


/* 4. THE
/* 2. This is the magic part that turns the black icon white */
.searchButton, #searchButton {
    filter: invert(1) brightness(2) !important;
}

Latest revision as of 08:10, 20 February 2026

/* 1. UNIVERSAL FORCE - Targets every single element regardless of ID */
*, 
*::before, 
*::after {
    background-color: #111111 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #99c4c4 !important;
}

/* 2. RE-ESTABLISH YOUR PREFERENCES - Prevents the universal rule from breaking your gray search and content boxes */
#content {
    background-color: #333333 !important;
}

#searchInput {
    background-color: #333333 !important;
}

/* 3. Keep your links and headers readable */
a { color: #00ffff !important; }
a:visited { color: #FF00FF !important; }
h1, h2, h3, h4 {
font-weight: bold;
color: #fff698 !important; }


/* 2. BIG FONT & SPACING - Global Text Increase */
html, body, p, div, li, span, a {
    font-size: 1.1rem !important; /* Larger text for easier reading */
    line-height: 1.6 !important;   /* Better spacing for screen readers */
}






/* 1. Target both the class and ID correctly */
.searchButton, #searchButton {
    background-color: #333333 !important; /* Dark gray to match your field */
    border: 1px solid #FFFF00 !important; /* Yellow border for accessibility */
    min-width: 45px !important;            /* Makes the button a larger target */
    cursor: pointer;
}

/* 2. This is the magic part that turns the black icon white */
.searchButton, #searchButton {
    filter: invert(1) brightness(2) !important;
}