MediaWiki:Timeless.css: Difference between revisions
From Access Tech Central
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* 1. Global | /* 1. Global Reset - Fixes the big white background behind everything */ | ||
html, body, #mw-content-container, #mw- | html, body, .mw-body, #mw-content-container, #mw-site-navigation, #mw-related-navigation { | ||
background-color: #000000 !important; | background-color: #000000 !important; | ||
color: #ffffff !important; | color: #ffffff !important; | ||
} | } | ||
/* 2. | /* 2. Fixes the Header (Top) and Footer (Bottom) */ | ||
#mw- | #mw-header-container, #mw-footer-container { | ||
background-color: #000000 !important; | background-color: #000000 !important; | ||
border-bottom: 2px solid #FFFF00 !important; /* Yellow high-contrast line */ | |||
} | } | ||
/* 3. | /* 3. The Main Content Box - Fixes the white square around your text */ | ||
#content { | |||
background-color: #121212 !important; /* Slightly lighter so | background-color: #121212 !important; /* Slightly lighter so text pops */ | ||
color: #ffffff !important; | |||
border: 1px solid #333333 !important; | border: 1px solid #333333 !important; | ||
max-width: 1400px !important; /* Increases width as requested */ | |||
line-height: 1.8 !important; /* Best for screen readers */ | |||
} | } | ||
/* 4. | /* 4. Navigation Boxes - Fixes the white boxes in the sidebar */ | ||
.sidebar-chunk, .mw-portlet { | |||
background-color: #121212 !important; | background-color: #121212 !important; | ||
border: 1px solid #444 !important; | |||
color: #ffffff !important; | color: #ffffff !important; | ||
} | } | ||
/* 5. | /* 5. High-Contrast Link Colors */ | ||
a { color: #00FFFF !important; } /* Cyan links */ | a { color: #00FFFF !important; } /* Cyan links */ | ||
a:visited { color: #FF00FF !important; } /* Magenta links */ | a:visited { color: #FF00FF !important; } /* Magenta links */ | ||
/* 6. Hide the "Set $wgLogos" error | /* 6. Hide the "Set $wgLogos" error box */ | ||
.mw-wiki-logo { display: none !important; } | .mw-wiki-logo { display: none !important; } | ||
Revision as of 06:34, 20 February 2026
/* 1. Global Reset - Fixes the big white background behind everything */
html, body, .mw-body, #mw-content-container, #mw-site-navigation, #mw-related-navigation {
background-color: #000000 !important;
color: #ffffff !important;
}
/* 2. Fixes the Header (Top) and Footer (Bottom) */
#mw-header-container, #mw-footer-container {
background-color: #000000 !important;
border-bottom: 2px solid #FFFF00 !important; /* Yellow high-contrast line */
}
/* 3. The Main Content Box - Fixes the white square around your text */
#content {
background-color: #121212 !important; /* Slightly lighter so text pops */
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;
}
/* 5. High-Contrast Link Colors */
a { color: #00FFFF !important; } /* Cyan links */
a:visited { color: #FF00FF !important; } /* Magenta links */
/* 6. Hide the "Set $wgLogos" error box */
.mw-wiki-logo { display: none !important; }