MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* | /* GLOBAL BACKGROUND - Targets the entire window */ | ||
body { | html, body, #content, #mw-page-base, #mw-head-base { | ||
background-color: # | background-color: #0d0d0d !important; | ||
color: # | color: #e0e0e0 !important; | ||
} | } | ||
/* | /* SIDEBAR & NAVIGATION */ | ||
#mw-panel, #p-logo, .mw-sidebar, #mw-navigation { | |||
color: # | background-color: #0d0d0d !important; | ||
} | } | ||
/* | /* LINKS - Hacker Green */ | ||
a { color: #00ff41 !important; } | |||
a:visited { color: #008f11 !important; } | |||
border | /* SEARCH BAR */ | ||
#searchInput { | |||
margin: | background-color: #1a1a1a !important; | ||
color: #ffd700 !important; | |||
border: 1px solid #333 !important; | |||
} | |||
/* THE CENTRAL CONTENT BOX */ | |||
#content { | |||
border: 1px solid #333 !important; | |||
margin-left: 11em; /* Adjust based on your skin */ | |||
} | } | ||
/* | /* TABS (Read, Edit, View History) */ | ||
.vector-menu-tabs li { | |||
background-image: none !important; | |||
background-color: #1a1a1a !important; | |||
} | } | ||
.vector-menu-tabs .selected { | |||
color: # | background-color: #333 !important; | ||
} | } | ||
Revision as of 02:01, 16 January 2026
/* GLOBAL BACKGROUND - Targets the entire window */
html, body, #content, #mw-page-base, #mw-head-base {
background-color: #0d0d0d !important;
color: #e0e0e0 !important;
}
/* SIDEBAR & NAVIGATION */
#mw-panel, #p-logo, .mw-sidebar, #mw-navigation {
background-color: #0d0d0d !important;
}
/* LINKS - Hacker Green */
a { color: #00ff41 !important; }
a:visited { color: #008f11 !important; }
/* SEARCH BAR */
#searchInput {
background-color: #1a1a1a !important;
color: #ffd700 !important;
border: 1px solid #333 !important;
}
/* THE CENTRAL CONTENT BOX */
#content {
border: 1px solid #333 !important;
margin-left: 11em; /* Adjust based on your skin */
}
/* TABS (Read, Edit, View History) */
.vector-menu-tabs li {
background-image: none !important;
background-color: #1a1a1a !important;
}
.vector-menu-tabs .selected {
background-color: #333 !important;
}