MediaWiki:Common.css: Difference between revisions
From IUO Tome of Knowledge
Replaced content with "→Dark mode styles: body.dark-mode { background-color: #111 !important; color: #eee !important; } body.dark-mode a { color: #80c0ff !important; } body.dark-mode #mw-panel, body.dark-mode #mw-head, body.dark-mode #footer { background: #222 !important; }" Tag: Replaced |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Dark mode styles */ | /* Dark mode styles for entire Timeless skin */ | ||
body.dark-mode { | body.dark-mode { | ||
background-color: #111 !important; | background-color: #111 !important; | ||
| Line 5: | Line 5: | ||
} | } | ||
/* Header */ | |||
body.dark-mode #mw-head, | |||
body.dark-mode #mw-head .mw-shell { | |||
background-color: #1a1a1a !important; | |||
color: #eee !important; | |||
} | |||
/* Sidebar / panels */ | |||
body.dark-mode #mw-panel { | |||
background-color: #1c1c1c !important; | |||
color: #eee !important; | |||
} | |||
/* Main content */ | |||
body.dark-mode #content, | |||
body.dark-mode .mw-body-content, | |||
body.dark-mode .mw-parser-output { | |||
background-color: #1b1b1b !important; | |||
color: #eee !important; | |||
} | |||
/* Footer */ | |||
body.dark-mode #footer { | |||
background-color: #111 !important; | |||
color: #ccc !important; | |||
} | |||
/* Links */ | |||
body.dark-mode a { | body.dark-mode a { | ||
color: #80c0ff !important; | color: #80c0ff !important; | ||
} | |||
body.dark-mode a:visited { | |||
color: #a0aaff !important; | |||
} | } | ||
body.dark-mode | /* Buttons / CTAs */ | ||
body.dark-mode | body.dark-mode .button, | ||
body.dark-mode .mw-button { | |||
background-color: #28a745 !important; | |||
color: #fff !important; | |||
} | } | ||
Revision as of 05:17, 6 October 2025
/* Dark mode styles for entire Timeless skin */
body.dark-mode {
background-color: #111 !important;
color: #eee !important;
}
/* Header */
body.dark-mode #mw-head,
body.dark-mode #mw-head .mw-shell {
background-color: #1a1a1a !important;
color: #eee !important;
}
/* Sidebar / panels */
body.dark-mode #mw-panel {
background-color: #1c1c1c !important;
color: #eee !important;
}
/* Main content */
body.dark-mode #content,
body.dark-mode .mw-body-content,
body.dark-mode .mw-parser-output {
background-color: #1b1b1b !important;
color: #eee !important;
}
/* Footer */
body.dark-mode #footer {
background-color: #111 !important;
color: #ccc !important;
}
/* Links */
body.dark-mode a {
color: #80c0ff !important;
}
body.dark-mode a:visited {
color: #a0aaff !important;
}
/* Buttons / CTAs */
body.dark-mode .button,
body.dark-mode .mw-button {
background-color: #28a745 !important;
color: #fff !important;
}
