├── README.md ├── logo-large.png ├── logo.png └── wikipedia-dark.user.css /README.md: -------------------------------------------------------------------------------- 1 | # Wikipedia Deep Dark Theme 2 | CSS style for [wikipedia.org](https://en.wikipedia.org/wiki/Main_Page) 3 | 4 | ## About 5 | **Dark Wikipedia theme**. 6 | Get a cleaner, **easier-to-read** wiki at night to focus on content while browsing a beautiful dark website. 7 | Theme by n0x (nox). Style based on *Wikipedia Minimalistic*. 8 | 9 | *Note: R2L languages are not supported yet, feel free to contribute!* 10 | 11 | ## Support 12 | You can buy me a ☕️ by using the donation button on this [page](https://userstyles.org/styles/122072/wikipedia-deep-dark-theme) 13 | 14 | Or via Bitcoin here: 112r8akXCYEjqjtUJEn1kgt1FjgZLseEvq 15 | 16 | I also support Brave Rewards' **Basic Attention Token**, which is making it easier to tip creators! 17 | 18 | Thanks a lot! 19 | 20 | ## Pre-requisites 21 | If you don't have any CSS customization add'on for your browser yet, you can check out this repository: [Stylus](https://github.com/openstyles/stylus) and install their solution! 22 | 23 | You can then install this theme either manually by copy/pasting the code into a new style (you won't get updates), or through userstyles.org (read the next chapter). 24 | 25 | ## Download 26 | If you already have an add'on installed, you can download the latest release of this theme on [userstyles.world](https://userstyles.world/style/1691/wikipedia-deep-dark-theme). 27 | 28 | Don't forget to check that page from time to time in order to update your style, or simply use your add'on to batch update all your themes (see [here](https://github.com/openstyles/stylus/wiki/Manager#updates) for Stylus). 29 | -------------------------------------------------------------------------------- /logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0x-styles/wikipedia-dark/16f4bf828172f91771555ecda1f1372b4575cf07/logo-large.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0x-styles/wikipedia-dark/16f4bf828172f91771555ecda1f1372b4575cf07/logo.png -------------------------------------------------------------------------------- /wikipedia-dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name Wikipedia Deep Dark Theme 3 | @version 1.1.0 4 | @description Dark Wikipedia theme. Get a cleaner, easier-to-read wiki at night to focus on content while browsing a beautiful dark website. 5 | @namespace http://www.w3.org/1999/xhtml 6 | @author n0x 7 | @homepageURL https://github.com/n0x-styles/wikipedia-dark 8 | @supportURL https://github.com/n0x-styles/wikipedia-dark/issues 9 | @license CC0 10 | @preprocessor default 11 | ==/UserStyle== */ 12 | 13 | @namespace url(http://www.w3.org/1999/xhtml); 14 | 15 | @-moz-document domain('wikipedia.org'), domain("wikimedia.org"), domain("wiktionary.org"), domain("wikibooks.org"), domain("wikinews.org"), domain("wikisource.org"), domain("wikivoyage.org") { 16 | 17 | body { 18 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important; 19 | color: #ddd; 20 | background-color: #222 !important; 21 | } 22 | 23 | a { 24 | color: #608dff !important; 25 | text-decoration: none; 26 | } 27 | 28 | a:hover { 29 | color: #637ab5 !important; 30 | text-decoration: underline; 31 | } 32 | 33 | a:visited { 34 | color: #637ab5 !important; 35 | } 36 | 37 | b { 38 | font-weight: bold; 39 | } 40 | 41 | .b, div, th { 42 | color: #fff !important; 43 | } 44 | 45 | h1 { 46 | border: 0 !important; 47 | font-family: 'Arial' !important; 48 | font-weight: 700 !important; 49 | font-size: 36px !important; 50 | color: #fff !important; 51 | } 52 | 53 | h2 { 54 | border: 0 !important; 55 | font-family: 'Arial' !important; 56 | font-weight: 400 !important; 57 | font-size: 26px !important; 58 | color: #eee !important; 59 | } 60 | 61 | h3 { 62 | border: 0 !important; 63 | font-family: 'Arial' !important; 64 | font-weight: 400 !important; 65 | font-size: 16px !important; 66 | color: #ddd !important; 67 | } 68 | 69 | h4 { 70 | color: #ccc !important; 71 | } 72 | 73 | [style*="color: black"] { 74 | color: #fff !important; 75 | } 76 | 77 | [style*="background:#f8f9fa"] { 78 | background: #2d2c2b !important; 79 | border: none !important; 80 | } 81 | 82 | .reflist, 83 | .refbegin { 84 | background-color: #282828 !important; 85 | } 86 | 87 | #content h3 { 88 | font-size: 20px !important; 89 | } 90 | 91 | p { 92 | font-weight: 300 !important; 93 | line-height: 1.7 !important; 94 | color: #ddd !important; 95 | } 96 | 97 | .portal-column-right span, 98 | .portal-column-left span, 99 | body.ns-100 .mw-body-content h2, 100 | .mw_metadata th, 101 | .tracklist th, 102 | #mp-tfl-h2 { 103 | color: #ddd !important; 104 | background-color: #444 !important; 105 | } 106 | 107 | body.ns-100 .mw-body-content th, 108 | body.ns-100 .mw-body-content div, 109 | body.ns-100 #portal td, 110 | .mw_metadata td, 111 | .tracklist td, 112 | .tracklist div { 113 | color: #ddd !important; 114 | border-width: 0px !important; 115 | background-color: #333 !important; 116 | } 117 | 118 | .portal-column-right, 119 | .portal-column-left, 120 | body.ns-100 .mw-body-content .subpages { 121 | color: #ddd !important; 122 | background-color: #222 !important; 123 | border-width: 0 !important; 124 | } 125 | 126 | .mw-highlight { 127 | background-color: #222 !important; 128 | } 129 | 130 | .mw-highlight .nc, 131 | .mw-highlight .nf { 132 | color: #068dff; 133 | } 134 | 135 | .mw-highlight .no { 136 | color: #dd0000; 137 | } 138 | 139 | .mw-notification { 140 | background-color: #333 !important; 141 | } 142 | 143 | #Example { 144 | color: #ddd !important; 145 | } 146 | 147 | #disambigbox { 148 | width: 99% !important; 149 | border-width: 1px 0 1px 0 !important; 150 | border-style: solid !important; 151 | border-color: #777 !important; 152 | } 153 | 154 | .hlist.hlist-separated.inline { 155 | background-color: transparent !important; 156 | } 157 | 158 | table, 159 | td, 160 | th { 161 | border: 0 !important; 162 | border-collapse: collapse !important; 163 | padding: 5px !important; 164 | /* color: #333 !important; */ 165 | 166 | background-color: #444 !important; 167 | /* With this feature enabled, you loose visibility on colored table cells */ 168 | } 169 | 170 | ul, 171 | .skin-vector .compact-ambox table .mbox-text-span { 172 | list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23ddd'/%3E%3C/svg%3E"); 173 | } 174 | 175 | /* Table of Contents */ 176 | 177 | .toc { 178 | background: #333 !important; 179 | border: none !important; 180 | display: block !important; 181 | max-width: 300px !important; 182 | padding: 7px 14px !important 183 | } 184 | 185 | .tocnumber { 186 | color: #ddd !important; 187 | } 188 | 189 | .tocnumber:hover { 190 | text-decoration: none !important; 191 | } 192 | 193 | .toctogglelabel { 194 | color: #608dff !important; 195 | outline: 0 !important; 196 | } 197 | 198 | .toctogglespan { 199 | float: right !important; 200 | margin-top: 11px !important; 201 | margin-left: 10px !important; 202 | } 203 | 204 | .toctogglespan::before, .toctogglespan::after { 205 | content: "" !important; 206 | } 207 | 208 | .toc a:hover { 209 | text-decoration: none !important; 210 | } 211 | 212 | a:hover .toctext { 213 | color: #637ab5 !important; 214 | text-decoration: underline; 215 | } 216 | 217 | /* End */ 218 | 219 | ul, 220 | li, 221 | caption { 222 | background: transparent !important; 223 | border: 0px !important; 224 | line-height: 1.8 !important; 225 | font-size: 14px !important; 226 | font-weight: 300 !important; 227 | } 228 | 229 | li span { 230 | background-color: transparent !important; 231 | border: 0 !important; 232 | font-size: 14px !important; 233 | } 234 | 235 | .referencetooltip { 236 | background-color: #282828 !important; 237 | } 238 | 239 | dl { 240 | font-weight: 300 !important; 241 | } 242 | 243 | dt { 244 | font-style: italic; 245 | font-size: 16px !important; 246 | margin-top: 10px !important; 247 | } 248 | 249 | dd { 250 | font-size: 15px !important; 251 | } 252 | 253 | /* Change Vector 2022 Wikipedia logo */ 254 | .mw-logo-icon { 255 | content: var(--wiki-logo) !important; 256 | width: 3.5rem; 257 | height: 4rem; 258 | } 259 | 260 | /* Remove Vector 2022 Wikipedia title and subtitle */ 261 | .mw-logo-container { 262 | transform: scale(0) !important; 263 | } 264 | 265 | /* Vector 2017 logo change */ 266 | .mw-wiki-logo { 267 | padding-left: 15px !important; 268 | padding-top: 10px !important; 269 | border: 0 !important; 270 | outline: 0 !important; 271 | } 272 | 273 | code { 274 | padding: 3px !important; 275 | background: transparent !important; 276 | color: #39892f !important; 277 | border: 1px solid #555 !important; 278 | } 279 | 280 | .hatnote span { 281 | color: #888 !important; 282 | background-color: #222 !important; 283 | } 284 | 285 | tt { 286 | font-family: 'Source Code Pro', 'Lucida Sans Unicode', 'Courier New' !important; 287 | font-size: 16px !important; 288 | } 289 | 290 | .new, 291 | .new:link, 292 | .new:visited { 293 | color: #cd5b45 !important; 294 | } 295 | 296 | blockquote { 297 | border: 0 !important; 298 | font-style: italic !important; 299 | font-size: 20px !important; 300 | margin: 35px 75px !important; 301 | line-height: 1.5 !important; 302 | font-weight: 300 !important; 303 | background: transparent !important; 304 | } 305 | 306 | select { 307 | padding: 0 10px; 308 | } 309 | 310 | .mw-ui-button, 311 | .mw-ui-progressive { 312 | border: none !important; 313 | color: #347Bff !important; 314 | background: #222 !important; 315 | text-shadow: 0 0 0; 316 | } 317 | 318 | .mw-logo-container, .mw-ui-icon, .searchButton { 319 | filter: invert(100%); 320 | } 321 | 322 | .mw-ui-button.mw-ui-progressive:hover, 323 | .mw-ui-button.mw-ui-progressive:focus, 324 | .mw-ui-button.mw-ui-progressive:active, 325 | .mw-ui-button:hover, 326 | .mw-ui-progressive:hover, 327 | .mw-ui-button:focus, 328 | .mw-ui-progressive:focus { 329 | box-shadow: 0 0 0 !important; 330 | text-shadow: 0 0 0 !important; 331 | border: 1px solid #347Bff !important; 332 | } 333 | 334 | .mw-helplink { 335 | background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 0a10 10 0 1 0 10 10A10 10 0 0 0 10 0zm1 16H9v-2h2zm2.71-7.6a2.64 2.64 0 0 1-.33.74 3.16 3.16 0 0 1-.48.55l-.54.48c-.21.18-.41.35-.58.52a2.54 2.54 0 0 0-.47.56A2.3 2.3 0 0 0 11 12a3.79 3.79 0 0 0-.11 1H9.08a8.9 8.9 0 0 1 .07-1.25 3.28 3.28 0 0 1 .25-.9 2.79 2.79 0 0 1 .41-.67 4 4 0 0 1 .58-.58c.17-.16.34-.3.51-.44a3 3 0 0 0 .43-.44 1.83 1.83 0 0 0 .3-.55 2 2 0 0 0 .11-.72 2.06 2.06 0 0 0-.17-.86 1.71 1.71 0 0 0-1-.9 1.7 1.7 0 0 0-.5-.1 1.77 1.77 0 0 0-1.53.68 3 3 0 0 0-.5 1.82H6.16a4.74 4.74 0 0 1 .28-1.68 3.56 3.56 0 0 1 .8-1.29 3.88 3.88 0 0 1 1.28-.83A4.59 4.59 0 0 1 10.18 4a4.44 4.44 0 0 1 1.44.23 3.51 3.51 0 0 1 1.15.65 3.08 3.08 0 0 1 .78 1.06 3.54 3.54 0 0 1 .29 1.45 3.39 3.39 0 0 1-.13 1.01z' fill='%23ddd'/%3E%3C/svg%3E") !important; 336 | } 337 | 338 | /* Media Viewer, image preview */ 339 | 340 | .mw-mmv-above-fold { 341 | background-color: #333 !important; 342 | } 343 | 344 | .mw-mmv-image-metadata { 345 | background-color: #111 !important; 346 | } 347 | 348 | .mw-message-box, 349 | .mw-mmv-dialog, 350 | .mw-mmv-dialog-down-arrow, 351 | .mw-mmv-download-attribution, 352 | .mw-mmv-download-pane, 353 | .mw-mmv-download-pane:hover { 354 | background-color: #333 !important; 355 | } 356 | 357 | /* End */ 358 | 359 | /* Language Settings modal */ 360 | .language-settings-dialog, .languagesettings-menu .menu-section:hover, #uls-display-settings-font-selectors .uls-font-item, 361 | .uls-menu, .uls-search, .uls-language-list, #uls-settings-block { 362 | background-color: #333 !important; 363 | } 364 | 365 | .languagesettings-menu .menu-section:focus { 366 | border-right: 0 !important; 367 | border-top: 0 !important; 368 | border-bottom: 0 !important; 369 | } 370 | 371 | #languagesettings-settings-panel, .uls-language-settings-close-block, .uls-input-settings .uls-input-settings-inputmethods-list { 372 | background-color: #444 !important; 373 | } 374 | 375 | .uls-language-settings-close-block .uls-icon-close { 376 | filter: invert(100%); 377 | } 378 | 379 | .language-settings-dialog h1 { 380 | font-size: 30px !important; 381 | } 382 | 383 | #display-panel-trigger.active, #input-panel-trigger.active { 384 | background-color: #444 !important; 385 | } 386 | 387 | .languagesettings-menu .menu-section .settings-text { 388 | color: #bbb !important; 389 | } 390 | 391 | #uls-display-settings-language-tab.mw-ui-pressed, #uls-display-settings-fonts-tab.mw-ui-pressed, #languagesettings-panels .mw-ui-pressed { 392 | background-color: #608dff !important; 393 | color: #fff !important; 394 | } 395 | 396 | #languagesettings-settings-panel strong { 397 | color: #fff !important; 398 | } 399 | 400 | #languagesettings-settings-panel .checkbox { 401 | color: #bbb !important; 402 | } 403 | /* End */ 404 | 405 | /* More Languages button and modal */ 406 | .mw-interlanguage-selector.mw-ui-button { 407 | color: #608dff !important; 408 | background-color: #333 !important; 409 | border: 0 !important; 410 | text-align: center !important; 411 | padding: 4px 8px 4px 26px; 412 | } 413 | 414 | .interlanguage-uls-menu .uls-lcd, .interlanguage-uls-menu #search, .uls-no-found-more, .callout--languageselection .uls-lcd, .callout--languageselection #search { 415 | background-color: #444 !important; 416 | } 417 | 418 | .uls-search-input-wrapper input { 419 | border-radius: 4px !important; 420 | padding: 0px 5px; 421 | background-color: #333 !important; 422 | color: #fff; 423 | } 424 | 425 | /* End */ 426 | 427 | #wpSave, 428 | #wpPreview, 429 | #wpDiff { 430 | border-radius: 4px !important; 431 | border: 1px solid #347Bff !important; 432 | color: #347Bff !important; 433 | background: #222 !important; 434 | text-shadow: 0 0 0; 435 | padding: 0.5em 1em; 436 | cursor: pointer; 437 | } 438 | 439 | #wpSave:hover, 440 | #wpPreview:hover, 441 | #wpDiff:hover { 442 | color: rgba(52, 123, 255, 0.5) !important; 443 | } 444 | 445 | .oo-ui-buttonElement-button { 446 | border-color: #777 !important; 447 | } 448 | 449 | /* Search */ 450 | 451 | #simpleSearch { 452 | position: relative; 453 | overflow: hidden; 454 | background: transparent !important; 455 | border-color: #666 !important; 456 | } 457 | 458 | #searchInput { 459 | height: 100%; 460 | color: #ddd !important; 461 | background: transparent !important; 462 | } 463 | 464 | /* Advanced search */ 465 | 466 | .oo-ui-indicatorElement-indicator.oo-ui-indicator-clear, 467 | .oo-ui-iconElement-icon.oo-ui-icon-search { 468 | filter: invert(100%); 469 | } 470 | 471 | .oo-ui-tabSelectWidget-framed, 472 | .mw-prefs-buttons { 473 | background-color: #333 !important; 474 | } 475 | 476 | .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected { 477 | background-color: #444 !important; 478 | } 479 | 480 | .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button { 481 | background-color: #068dff !important; 482 | color: #fff !important; 483 | } 484 | 485 | .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button[aria-controls^="mw-advancedSearch-expandable-"] { 486 | background-color: #444 !important; 487 | } 488 | 489 | .oo-ui-widget.oo-ui-widget-enabled.oo-ui-labelElement.oo-ui-tagItemWidget { 490 | color: #333 !important; 491 | } 492 | 493 | .mw-advancedSearch-fieldContainer { 494 | background: #333 !important; 495 | } 496 | 497 | .mw-advancedSearch-fieldContainer .oo-ui-labelElement > .oo-ui-fieldsetLayout-header > .oo-ui-labelElement-label { 498 | background-color: #333 !important; 499 | color: #eee !important; 500 | } 501 | 502 | .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled { 503 | background: #222 !important; 504 | } 505 | 506 | .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input { 507 | color: #fff !important; 508 | } 509 | 510 | .oo-ui-buttonElement-framed.oo-ui-widget-disabled > .oo-ui-buttonElement-button { 511 | background-color: #333 !important; 512 | } 513 | 514 | .oo-ui-dropdownInputWidget.oo-ui-widget-enabled { 515 | background-color: #333 !important; 516 | } 517 | 518 | .oo-ui-widget.oo-ui-labelElement.oo-ui-optionWidget.oo-ui-decoratedOptionWidget.oo-ui-menuOptionWidget .oo-ui-labelElement-label { 519 | color: #fff !important; 520 | } 521 | 522 | .oo-ui-dropdownWidget-handle { 523 | background-color: #222 !important; 524 | color: #fff! important; 525 | } 526 | 527 | .oo-ui-menuSelectWidget { 528 | background-color: #222 !important; 529 | } 530 | 531 | .oo-ui-optionWidget-selected { 532 | background-color: #555 !important; 533 | } 534 | 535 | .oo-ui-optionWidget-highlighted { 536 | background-color: #888 !important; 537 | } 538 | 539 | .mw-advancedSearch-namespace-selection { 540 | background: #444 !important; 541 | } 542 | 543 | #ooui-1.oo-ui-inputWidget-input { 544 | color: #ddd !important; 545 | background: transparent !important; 546 | } 547 | 548 | #mw-searchoptions, 549 | #searchText { 550 | color: #ddd !important; 551 | background-color: #444 !important; 552 | } 553 | 554 | .mw-ui-vform .warning { 555 | background-color: #664a00 !important; 556 | } 557 | 558 | .mw-ui-vform .error { 559 | background-color: #5c0000 !important; 560 | } 561 | 562 | .mw-ui-input { 563 | border: 1px solid #888 !important; 564 | color: #ddd !important; 565 | background: #222 !important; 566 | font-size: 16px !important; 567 | } 568 | 569 | .mw-ui-input:focus { 570 | box-shadow: 0 0 0 !important; 571 | } 572 | 573 | .oo-ui-labelWidget.oo-ui-inline-help { 574 | color: #aaa !important; 575 | } 576 | 577 | .mwe-math-fallback-image-inline { 578 | -webkit-filter: invert(100%); 579 | /* filter: url("data:image/svg+xml;utf8,#invert"); */ 580 | } 581 | 582 | .mwe-math-fallback-image-inline img, 583 | .mwe-math-element img, 584 | img[src*="LaTeX"] { 585 | filter: invert(100%); 586 | } 587 | 588 | .equation-box { 589 | background-color: #333 !important; 590 | } 591 | 592 | .mwe-popups, 593 | .mwe-popups-container, 594 | div.navpopup { 595 | background-color: #333 !important; 596 | font-size: 16px !important; 597 | } 598 | 599 | a.mwe-popups-extract::after { 600 | background: #333 !important; 601 | } 602 | 603 | /* Reference tooltips */ 604 | 605 | .rt-tooltip { 606 | background-color: #333 !important; 607 | border: 1px solid #888 !important; 608 | } 609 | 610 | .rt-tooltipTail::after { 611 | background: #333 !important; 612 | } 613 | 614 | .mwe-popups-extract:after { 615 | background: transparent !important; 616 | } 617 | 618 | .mwe-popups .mw-ui-icon { 619 | padding-top: 2px !important; 620 | } 621 | 622 | .mwe-popups-settings-icon:hover, .rt-settingsLink:hover { 623 | background-color: #222 !important; 624 | } 625 | 626 | .mwe-popups.flipped-y:after { 627 | border-top: 11px solid #333 !important; 628 | } 629 | 630 | .rt-tooltipTail:after { 631 | background-color: #333 !important; 632 | } 633 | 634 | .mwe-popups.mwe-popups-no-image-pointer:after { 635 | border-bottom: 11px solid #333 !important; 636 | } 637 | 638 | .mw-headline { 639 | color: #ddd !important; 640 | } 641 | 642 | .mw-content-ltr pre { 643 | font-family: "Courier New", Lucida Console, sans-serif !important; 644 | background-color: #333 !important; 645 | } 646 | 647 | .mw-parser-output #mp-other-lower { 648 | border-color: #777 !important; 649 | } 650 | 651 | .mw-parser-output #mp-other-lower .mp-h2 { 652 | background-color: #444 !important; 653 | } 654 | 655 | .suggestions { 656 | font-weight: 300 !important; 657 | font-size: 15px !important; 658 | max-width: 300px !important; 659 | margin-top: 15px !important; 660 | border: 0 !important; 661 | box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5); 662 | } 663 | 664 | .suggestions-results { 665 | border: 0 !important; 666 | } 667 | 668 | .suggestions-result { 669 | padding: 10px !important; 670 | } 671 | 672 | .imeselector, 673 | #searchEngines { 674 | display: none !important; 675 | } 676 | 677 | .mw-search-formheader { 678 | border: 0px !important; 679 | background: transparent !important; 680 | } 681 | 682 | .central-featured { 683 | height: 350px; 684 | background: transparent none no-repeat scroll center center / 200px auto; 685 | background-image: var(--wiki-logo); 686 | } 687 | 688 | .central-featured-logo { 689 | display: none; 690 | } 691 | 692 | .central-textlogo { 693 | filter: invert(1) !important; 694 | } 695 | 696 | .bookend { 697 | background-image: none !important; 698 | } 699 | 700 | .link-box em, 701 | .link-box small { 702 | color: #bbb !important; 703 | } 704 | 705 | .search-form fieldset { 706 | background-color: #444 !important; 707 | border-color: #888 !important; 708 | border-width: 1px !important; 709 | } 710 | 711 | .quotebox-title { 712 | background-color: #444 !important 713 | } 714 | 715 | #searchInput, 716 | #searchLanguage, 717 | #langsearch-input, 718 | .cdx-menu-item__content, .cdx-typeahead-search__search-footer, 719 | .cdx-text-input__input, .cdx-text-input__input--has-value, 720 | .cdx-button, .cdx-search-input--has-end-button { 721 | color: #bbb !important; 722 | background-color: #222 !important; 723 | border-color: #888 !important; 724 | border-width: 1px !important; 725 | } 726 | 727 | .cdx-icon { 728 | filter: invert(100%) !important; 729 | } 730 | 731 | .formBtn { 732 | background-color: #222 !important; 733 | border-color: #888 !important; 734 | border-width: 1px !important; 735 | border-radius: 0 !important; 736 | } 737 | 738 | .mw-search-result-heading, 739 | .searchresult, 740 | .searchmatch { 741 | font-size: 14px !important; 742 | font-weight: 400 !important; 743 | line-height: 22px; 744 | } 745 | 746 | .searchmatch, 747 | .mw-search-result-heading a:not(.searchmatch) { 748 | font-size: 18px !important; 749 | } 750 | 751 | .searchmatch { 752 | font-weight: 600 !important; 753 | } 754 | 755 | .searchresult .searchmatch { 756 | font-size: 14px !important 757 | } 758 | 759 | .mw-search-result-data, 760 | .mw-search-createlink { 761 | display: none; 762 | } 763 | 764 | .mw-search-exists { 765 | margin: 40px 0 !important; 766 | } 767 | 768 | .mw-search-result { 769 | padding-bottom: 40px !important; 770 | } 771 | 772 | #mw-page-base, 773 | .vectorTabs { 774 | background: transparent !important; 775 | border-width: 0px !important; 776 | } 777 | 778 | div#content.mw-body { 779 | color: #ddd !important; 780 | border: 0px !important; 781 | margin-left: 215px !important; 782 | } 783 | 784 | .portal, 785 | .portal table { 786 | background: transparent !important; 787 | } 788 | 789 | #mw-panel { 790 | width: 200px !important; 791 | border-right: 1px solid #666; 792 | background-color: #222 !important; 793 | padding-left: 10px !important; 794 | } 795 | 796 | #p-logo { 797 | left: 0; 798 | padding-left: 10px !important; 799 | background-color: #fff; 800 | } 801 | 802 | #p-logo a { 803 | width: 11em !important; 804 | padding-left: 40px; 805 | background-color: #fff; 806 | left: 0; 807 | border-right: 1px solid #666; 808 | margin-left: -1em; 809 | } 810 | 811 | #p-logo a:hover { 812 | opacity: 1.0; 813 | } 814 | 815 | #mw-head { /* Deprecated? */ 816 | color: #ddd !important; 817 | background-color: #2b2b2b; /* Change the color here for a different theme of header */ 818 | border-bottom: 1px solid #666 !important; 819 | opacity: 1.0; 820 | box-shadow: 0 1px 2px #2b2b2b; 821 | transition-property: opacity !important; 822 | transition-duration: 0.25s !important; 823 | height: 80px !important; 824 | } 825 | 826 | .mw-page-container, .vector-header-container, 827 | .mw-header, .vector-pinned-container, #vector-toc { 828 | background-color: #222 !important; 829 | } 830 | 831 | .vector-main-menu { /* Hotfix for TOC when user is connected */ 832 | background-color: #222 !important; 833 | border: 1px solid #444 !important; 834 | } 835 | 836 | #vector-toc::after{ 837 | background: none !important; 838 | } 839 | 840 | .vector-limited-width-popup { 841 | background-color: #444 !important; 842 | } 843 | 844 | #mw-head:hover { 845 | opacity: 1.0 !important; 846 | } 847 | 848 | .vector-menu-portal h3, 849 | .vector-menu-tabs { 850 | background-image: none !important; 851 | } 852 | 853 | .vector-menu-tabs a, 854 | #mw-head .vector-menu-dropdown h3 { 855 | background-image: none !important; 856 | } 857 | 858 | .vector-menu-tabs li a, 859 | #p-cactions-label span { 860 | font-size: 12px !important; 861 | } 862 | 863 | .vector-menu-dropdown h3 { 864 | padding-top: 12px !important; 865 | } 866 | 867 | .vector-menu-dropdown h3::after { 868 | top: -3px !important; 869 | background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M11.05 3.996l-.965-1.053-4.035 3.86-3.947-3.86L1.05 3.996l5 5 5-5' fill='%23ddd'/%3E%3C/svg%3E") !important; 870 | } 871 | 872 | .vector-menu-dropdown .vector-menu-content, 873 | .vector-dropdown-content { 874 | background-color: #2b2b2b !important; 875 | } 876 | 877 | .vector-icon { 878 | filter: invert(50%); 879 | } 880 | 881 | #p-cactions-label { 882 | background-position-y: -12px !important; 883 | outline: 0 !important; 884 | } 885 | 886 | #p-cactions > .vector-menu-content.body > .vector-menu-content-list.menu { 887 | background-color: #3b3b3b !important; 888 | } 889 | 890 | .vector-menu-content-list li { 891 | margin: -3px 4px 5px 4px; 892 | } 893 | 894 | #ca-watch { 895 | margin: 2px 4px; 896 | } 897 | 898 | #ca-move { 899 | font-size: 15px !important; 900 | } 901 | 902 | #pt-userpage a { 903 | background-position: 0 11px !important; 904 | padding-left: 20px !important; 905 | } 906 | 907 | #pt-anonuserpage { 908 | color: #ddd !important; 909 | } 910 | 911 | #pt-notifications-alert, #pt-notifications-notice { 912 | margin-top: 7px !important; 913 | } 914 | 915 | #p-personal { 916 | top: 3px !important; 917 | } 918 | 919 | #p-lang .uls-settings-trigger { 920 | margin-top: 13px !important; 921 | outline: 0 !important; 922 | } 923 | 924 | .uls-lcd-region-title { 925 | color: #888 !important; 926 | } 927 | 928 | /* Removed for vector 2022 929 | #left-navigation { 930 | margin-left: 233px !important; 931 | } 932 | */ 933 | 934 | .wikitable { 935 | font-weight: 300 !important; 936 | } 937 | 938 | .wikitable td, 939 | .wikitable th { 940 | border: 1px solid #444 !important; 941 | } 942 | 943 | pre { 944 | line-height: 1.3 !important; 945 | font-family: "Courier New", Lucida Console, sans-serif !important; 946 | border: 0 !important; 947 | background: 0 !important; 948 | font-size: 16px !important; 949 | color: aliceblue !important; 950 | } 951 | 952 | .mw-code { 953 | border: 0 !important; 954 | padding: 17px !important; 955 | background: 0 !important; 956 | font-size: 16px !important; 957 | } 958 | 959 | .k-player .time-disp { 960 | color: #444 !important; 961 | } 962 | 963 | #bodyContent tbody, 964 | #mp-left, 965 | .MainPageBG, 966 | #mp-left div, 967 | #mp-right div, 968 | #mp-topbanner, 969 | .list, 970 | .template-documentation, 971 | .collapsible th, 972 | .autocollapse th { 973 | color: #ddd !important; 974 | background-color: #333 !important; 975 | border-color: #444 !important; 976 | } 977 | 978 | #js-lang-list-button { 979 | background-color: #333 !important; 980 | } 981 | 982 | .app-badges { 983 | background-color: #222 !important; 984 | } 985 | 986 | .wikitable, 987 | .wikitable th, 988 | .wikitable rh, 989 | .plainrowheaders, 990 | .nounderlines, 991 | .wikitable tr, 992 | .wikitable td, 993 | .navbox-title, 994 | .navbox-group, 995 | .navbox-odd, 996 | .navbox-even, 997 | .hlist, 998 | .mp-h2, 999 | #mp-left h2, 1000 | #mp-right h2, 1001 | #mp-bottom h2, 1002 | .navbox-abovebelow, 1003 | .group { 1004 | color: #eee !important; 1005 | background-color: #444 !important; 1006 | } 1007 | 1008 | body.ns-0 #content tbody code { 1009 | color: #39892f !important; 1010 | background-color: #222 !important; 1011 | border-width: 0 !important; 1012 | } 1013 | 1014 | .suggestions-results, 1015 | .suggestions-special { 1016 | background-color: #444 !important; 1017 | } 1018 | 1019 | .suggestions-results:hover, 1020 | .suggestions-special:hover { 1021 | background-color: #2c5699 !important; 1022 | } 1023 | 1024 | .suggestions-results span, 1025 | .special-query { 1026 | color: #ddd !important; 1027 | } 1028 | 1029 | .suggestions-result, 1030 | special-label { 1031 | color: #bbb !important; 1032 | } 1033 | 1034 | .highlight { 1035 | color: #393939 !important; 1036 | } 1037 | 1038 | .mw-search-profile-tabs { 1039 | color: #ddd !important; 1040 | background-color: #333 !important; 1041 | border-color: #555 !important; 1042 | } 1043 | 1044 | .wikitable tr, 1045 | .wikitable td, 1046 | .homonymie, 1047 | .plainlinks { 1048 | color: #eee !important; 1049 | background-color: transparent !important; 1050 | } 1051 | 1052 | td.table-no { 1053 | background-color: #7d3636 !important; 1054 | } 1055 | 1056 | td.table-yes { 1057 | background-color: #437043 !important; 1058 | } 1059 | 1060 | .quotebox { 1061 | color: #eee !important; 1062 | background-color: #252525 !important; 1063 | border-color: #555 !important; 1064 | } 1065 | 1066 | body.mediawiki table.mbox-small-left { 1067 | background-color: #222 !important; 1068 | } 1069 | 1070 | .thumbinner, 1071 | .thumb, 1072 | .toccolours, 1073 | .graytable { 1074 | background: transparent !important; 1075 | border: 0px !important; 1076 | font-size: 16px !important; 1077 | } 1078 | 1079 | .thumbimage { 1080 | border: 0 !important; 1081 | } 1082 | 1083 | .thumbcaption { 1084 | font-style: italic !important; 1085 | margin: 7px 0 !important; 1086 | color: #aaa !important; 1087 | } 1088 | 1089 | .thumbimage:hover { 1090 | opacity: 0.85 !important; 1091 | } 1092 | 1093 | .dablink { 1094 | margin: 14px 0 !important; 1095 | font-weight: 300 !important; 1096 | font-size: 18px !important; 1097 | } 1098 | 1099 | #siteSub, 1100 | .flaggedrevs_preview { 1101 | display: none !important; 1102 | } 1103 | 1104 | .ambox, 1105 | .tmbox, 1106 | .Note, 1107 | .informationbox { 1108 | margin: 5px 0 !important; 1109 | font-size: 18px !important; 1110 | line-height: 1.5 !important; 1111 | max-width: 1000px !important; /* Troubleshoot value: 550px */ 1112 | font-weight: 300 !important; 1113 | } 1114 | 1115 | .ambox td, 1116 | .tmbox td { 1117 | padding: 10px !important; 1118 | } 1119 | 1120 | .ambox-text-small, 1121 | .mbox-text, 1122 | .Note td { 1123 | font-size: 14px !important; 1124 | font-weight: 300 !important; 1125 | color: #ddd !important; 1126 | } 1127 | 1128 | /* 1129 | .ambox-image, 1130 | .mbox-image { 1131 | display: none; 1132 | } 1133 | */ 1134 | 1135 | #request_for_deletion, 1136 | .ambox-serious { 1137 | background: rgba(255, 0, 0, 0.1) !important; 1138 | border: 1px solid rgba(255, 0, 0, 0.15) !important; 1139 | color: #a00000 !important; 1140 | } 1141 | 1142 | .tmbox-notice, 1143 | .tmbox-move, 1144 | .Note { 1145 | background: rgba(150, 75, 0, 0.1) !important; 1146 | border: 1px solid rgba(150, 75, 0, 0.15) !important; 1147 | } 1148 | 1149 | .informationbox { 1150 | background: #222 !important; 1151 | padding: 10px !important; 1152 | font-size: 14px !important; 1153 | } 1154 | 1155 | .shortcutbox { 1156 | background: #333 !important; 1157 | } 1158 | 1159 | .editOptions { 1160 | background: #222 !important; 1161 | border: 0px !important; 1162 | } 1163 | 1164 | .catlinks, .portal-bar { 1165 | /* 1166 | background: transparent !important; 1167 | border: 1px solid #aaa !important; 1168 | */ 1169 | background: #444 !important; 1170 | border: none !important; 1171 | font-size: 16px !important; 1172 | } 1173 | 1174 | .infobox, 1175 | .tright, 1176 | .toccolours { 1177 | color: #ddd !important; 1178 | border: 0 !important; 1179 | background: transparent !important; 1180 | border-collapse: collapse !important; 1181 | } 1182 | 1183 | .infobox td, 1184 | .infobox th, 1185 | .tright td, 1186 | .tright th, 1187 | .toccolours td, 1188 | .toccolours th { 1189 | padding: 5px !important; 1190 | background: #333 !important; 1191 | font-weight: 400 !important; 1192 | } 1193 | 1194 | .infobox_v3 { 1195 | background: #333 !important; 1196 | border-color: transparent !important; 1197 | } 1198 | 1199 | .infobox_v3 .entete div { 1200 | background-color: #333 !important; 1201 | color: #ddd !important; 1202 | } 1203 | 1204 | .image img:hover { 1205 | opacity: 0.85 !important; 1206 | } 1207 | 1208 | .image img { 1209 | background-color: transparent !important; 1210 | } 1211 | 1212 | .globegris { 1213 | background: transparent !important; 1214 | } 1215 | 1216 | .mw-editsection-bracket, 1217 | .references-small b, 1218 | .mw-cite-backlink, 1219 | .plainlinksneverexpand { 1220 | display: none !important; 1221 | } 1222 | 1223 | .mw-body { 1224 | background-color: #222 !important; 1225 | } 1226 | 1227 | #floating_object { 1228 | display: none; 1229 | } 1230 | 1231 | .navbox, 1232 | .nowraplinks { 1233 | margin: 10px 0 !important; 1234 | border: 0 !important; 1235 | background: transparent !important; 1236 | } 1237 | 1238 | .navbox td, 1239 | .navbox th, 1240 | .nowraplinks td, 1241 | .nowraplinks th { 1242 | padding: 9px 6px !important; 1243 | font-size: 14px !important; 1244 | font-weight: 300 !important; 1245 | border: 1px solid #222 !important; 1246 | } 1247 | 1248 | .vertical-navbox th { 1249 | background-color: #444 !important; 1250 | } 1251 | 1252 | .NavFrame { 1253 | border: 0 !important; 1254 | background: transparent !important; 1255 | padding: 0 !important; 1256 | } 1257 | 1258 | .NavHead { 1259 | margin: 10px 0 !important; 1260 | padding: 12px !important; 1261 | font-size: 16px !important; 1262 | font-weight: 700 !important; 1263 | background: transparent !important; 1264 | } 1265 | 1266 | .NavContent { 1267 | background-color: #ffffff1a !important; 1268 | } 1269 | 1270 | .Boxmerge { 1271 | border: 0px !important; 1272 | } 1273 | 1274 | #coordinates { 1275 | display: none !important; 1276 | } 1277 | 1278 | #mw-fr-revisiontag, 1279 | #mw-fr-reviewnotice { 1280 | display: none !important; 1281 | } 1282 | 1283 | #footer { 1284 | margin-left: 14em !important; 1285 | padding: 1.25em 1.5em 1.5em !important; 1286 | } 1287 | 1288 | #footer-info-copyright, 1289 | #footer-info-lastmod { 1290 | color: #777 !important; 1291 | } 1292 | 1293 | #footer li { 1294 | padding: 2px !important; 1295 | } 1296 | 1297 | .module-shortcutboxplain, 1298 | s.oo-ui-window-frame, 1299 | .oo-ui-popupWidget-popup, 1300 | .oo-ui-widget { 1301 | color: #ddd !important; 1302 | background-color: #444 !important; 1303 | } 1304 | 1305 | .oo-ui-labelElement-label { 1306 | color: #ddd !important; 1307 | } 1308 | 1309 | /* 1310 | .oo-ui-buttonElement-button .oo-ui-iconElement-icon { 1311 | -webkit-filter: invert(100%); 1312 | } 1313 | */ 1314 | 1315 | /* Preferences when logged in */ 1316 | 1317 | /* 1318 | .oo-ui-tabSelectWidget-framed, .mw-prefs-buttons { 1319 | background-color: #333 !important; 1320 | } 1321 | 1322 | .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected { 1323 | background-color: #444 !important; 1324 | } 1325 | 1326 | .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button { 1327 | background-color: #608dff !important; 1328 | color: #fff !important; 1329 | } 1330 | 1331 | .oo-ui-buttonElement-framed.oo-ui-widget-disabled > .oo-ui-buttonElement-button { 1332 | background-color: #333 !important; 1333 | } 1334 | 1335 | .oo-ui-widget.oo-ui-labelElement.oo-ui-optionWidget.oo-ui-decoratedOptionWidget.oo-ui-menuOptionWidget .oo-ui-labelElement-label { 1336 | color: #333 !important; 1337 | } 1338 | */ 1339 | 1340 | .oo-ui-inline-help { 1341 | color: #aaa !important; 1342 | } 1343 | 1344 | #mw-prefs-restoreprefs .oo-ui-labelElement-label { 1345 | color: #cd5b45 !important; 1346 | } 1347 | 1348 | .mw-revslider-revision-wrapper-down.mw-revslider-revision-hovered { 1349 | color: #d6a100 !important; 1350 | } 1351 | 1352 | .mw-revslider-revision-wrapper-up.mw-revslider-revision-hovered { 1353 | color: #1e6db8 !important; 1354 | } 1355 | 1356 | .mw-revslider-revision-older { 1357 | background-color: #775900 !important; 1358 | } 1359 | 1360 | .mw-revslider-revision-intermediate { 1361 | background-color: #454545 !important; 1362 | } 1363 | 1364 | .mw-revslider-revision-newer { 1365 | background-color: #133656 !important; 1366 | } 1367 | 1368 | .mw-revslider-revision { 1369 | background-color: #555 !important; 1370 | } 1371 | 1372 | del.diffchange.diffchange-inline { 1373 | background-color: #775900 !important; 1374 | } 1375 | 1376 | ins.diffchange.diffchange-inline { 1377 | background-color: #133656 !important; 1378 | } 1379 | 1380 | .diff-context { 1381 | color: #999 !important; 1382 | } 1383 | 1384 | td.diff-otitle, 1385 | td.diff-ntitle { 1386 | background-color: #333 !important; 1387 | } 1388 | 1389 | .lang-list-button { 1390 | outline-color: #222 !important; 1391 | } 1392 | 1393 | .lang-list-content { 1394 | background-color: #444 !important; 1395 | } 1396 | 1397 | .bookshelf span { 1398 | background-color: #444 !important; 1399 | } 1400 | 1401 | .lang-list-container { 1402 | background-color: #333 !important; 1403 | } 1404 | 1405 | .localized-slogan { 1406 | color: #555 !important; 1407 | } 1408 | 1409 | .svg-Wikimedia-logo_black { 1410 | filter: invert(100%); 1411 | } 1412 | 1413 | .hll { 1414 | background-color: #2B2B2B !important; 1415 | } 1416 | 1417 | kbd { 1418 | background-image: linear-gradient(to top, #333, #111, #333) !important; 1419 | box-shadow: 0.1em 0.2em 0.2em #111 !important; 1420 | border: 1px solid #555 !important; 1421 | } 1422 | 1423 | div[style*="background:#ccc"] { 1424 | background: #333 !important 1425 | } 1426 | 1427 | .cta-holder { 1428 | background-color: #333; 1429 | } 1430 | 1431 | #NewarticletextNS > div { 1432 | background-color: #333 !important; 1433 | } 1434 | 1435 | select { 1436 | /* Selects are notoriousely hard to style, so I just put an 0.8 invert over it. 1437 | It looks fine I guess, but a better solution should be found */ 1438 | filter:invert(0.8); 1439 | } 1440 | 1441 | .oo-ui-textInputWidget .oo-ui-inputWidget-input { 1442 | background-color:#444; 1443 | color:#FFF; 1444 | } 1445 | 1446 | .warningbox { 1447 | background-color:#443; 1448 | } 1449 | 1450 | /* Wikieditor */ 1451 | 1452 | .wikiEditor-ui-toolbar { 1453 | background-color:#444; 1454 | } 1455 | 1456 | .wikiEditor-ui-toolbar .tabs span.tab a, 1457 | .wikiEditor-ui-toolbar .tabs span.tab a:visited { 1458 | background-image:url('data:image/svg+xml;utf8,'); 1459 | } 1460 | 1461 | .mw-editform #wpTextbox1 { 1462 | background-color:#333; 1463 | color: white; 1464 | } 1465 | 1466 | .menuSwitcher { 1467 | background-color:#333 !important; 1468 | } 1469 | 1470 | .editMenus-button { 1471 | background-color:#444; 1472 | border:outset 2px #888; 1473 | border-radius:0.25em; 1474 | } 1475 | 1476 | .menuSwitcher-help-button, 1477 | .menuSwitcher-help-button:hover, 1478 | .menuSwitcher-hide-button, 1479 | .menuSwitcher-hide-button:hover { 1480 | color:#FFF !important; 1481 | } 1482 | 1483 | .oo-ui-popupToolGroup-handle>span { 1484 | filter:invert(1); 1485 | } 1486 | 1487 | .oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover { 1488 | background-color:#222; 1489 | } 1490 | 1491 | /* Central Notice Banner */ 1492 | 1493 | .cnotice { 1494 | background-color: #333 !important; 1495 | border: 1px solid #444; 1496 | } 1497 | 1498 | .cnotice-toggle-box { 1499 | filter: invert(100%); 1500 | } 1501 | 1502 | div[style*="background:#FCFCFC"] { 1503 | background:#263F1E !important 1504 | } 1505 | 1506 | /* Preferences */ 1507 | 1508 | .client-js #preferences { 1509 | border: 1px solid #888 !important; 1510 | background-color: #444 !important; 1511 | } 1512 | 1513 | .client-js #preferences legend { 1514 | color: #ededed !important; 1515 | } 1516 | 1517 | .mw-prefs-tabs-wrapper.oo-ui-panelLayout-framed { 1518 | border-color: #888 !important; 1519 | } 1520 | 1521 | /* Page Preview Options dialog */ 1522 | #mwe-popups-settings { 1523 | background-color: #333 !important; 1524 | } 1525 | 1526 | #mwe-popups-settings main form label > span { 1527 | color: #fff !important; 1528 | } 1529 | 1530 | .mw-ui-icon-popups-close::before { 1531 | filter: invert(100%) !important; 1532 | } 1533 | 1534 | .mwe-popups-overlay { 1535 | background-color: rgba(0, 0, 0, 0.6) !important; 1536 | } 1537 | 1538 | /* TOC */ 1539 | .vector-toc-pinned #vector-toc-pinned-container .vector-toc::after { 1540 | display: none 1541 | } 1542 | 1543 | .vector-toc { 1544 | background-color: #ffffff10; 1545 | } 1546 | 1547 | div.vector-toc-text { 1548 | color: #608dff !important; 1549 | } 1550 | 1551 | .vector-feature-zebra-design-enabled.client-js body.ltr .vector-toc .vector-toc-toggle { 1552 | border: 0px !important; 1553 | } 1554 | 1555 | .vector-pinnable-header-toggle-button { 1556 | color: white !important; 1557 | background-color:#333 !important; 1558 | } 1559 | 1560 | .vector-toc-toggle { 1561 | top: 6px !important; 1562 | } 1563 | 1564 | /* Minor fixes */ 1565 | 1566 | .app-badges .footer-sidebar-content, 1567 | .mw-inputbox-centered, 1568 | .oo-ui-tagMultiselectWidget-handle, 1569 | .mw-rcfilters-ui-row { 1570 | background-color: #222 !important; 1571 | } 1572 | 1573 | .mw-rcfilters-ui-menuSelectWidget-group, .mw-rcfilters-ui-filterMenuSectionOptionWidget, .mw-changeslist-legend { 1574 | background-color: #333 !important; 1575 | } 1576 | 1577 | .mw-mmv-info-box { 1578 | background-color: #111 !important; 1579 | } 1580 | 1581 | .introtosingle__base { 1582 | background-color: #555 !important; 1583 | } 1584 | 1585 | .vector-tab-noicon { 1586 | line-height: 15px !important; 1587 | } 1588 | 1589 | .mw-ui-icon-wikimedia-expand { 1590 | margin-top: 8px !important; 1591 | } 1592 | 1593 | .vector-toc-pinnable-header { 1594 | margin-top: 6px !important; 1595 | } 1596 | 1597 | .vector-pinnable-header-label { 1598 | font-size: 20px !important; 1599 | } 1600 | 1601 | .hidden-title, 1602 | .talkheader-help, 1603 | .todo-box, 1604 | .mw-collapsible-content, 1605 | .link-box:hover, 1606 | .link-box:hover strong, 1607 | .link-box:hover small, 1608 | .link-box:hover small bdi, 1609 | .link-box:hover small span { 1610 | background: #444 !important; 1611 | } 1612 | 1613 | figure, figcaption{ 1614 | background-color: #333 !important; 1615 | border-color: #555 !important; 1616 | } 1617 | 1618 | /* When editing */ 1619 | 1620 | .oo-ui-window-frame { 1621 | background-color: #333 !important; 1622 | border-color: #555 !important; 1623 | 1624 | } 1625 | 1626 | .oo-ui-window-frame .wikitable[data-diff-action="remove"] { 1627 | background-color: #d00 !important; 1628 | } 1629 | 1630 | .oo-ui-window-frame .wikitable[data-diff-action="insert"] { 1631 | background-color: #7bd57b !important; 1632 | } 1633 | 1634 | #vector-page-tools-pinned-container { 1635 | border: 1px solid #444 !important; 1636 | } 1637 | 1638 | #vector-page-tools::after { 1639 | background: none !important; 1640 | } 1641 | 1642 | div.vector-pinned-container::after { 1643 | background: none !important; 1644 | } 1645 | 1646 | /* End */ 1647 | 1648 | :root { 1649 | --wiki-logo: url("data:image/png;base64,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"); 1650 | } 1651 | } 1652 | 1653 | @-moz-document domain("m.wikipedia.org") { 1654 | /* Mobile version */ 1655 | 1656 | #mw-mf-page-center { 1657 | background: none !important; 1658 | } 1659 | 1660 | .hatnote.navigation-not-searchable { 1661 | background: transparent !important; 1662 | } 1663 | 1664 | .header-container.header-chrome { 1665 | background-color: #222 !important; 1666 | } 1667 | 1668 | .branding-box img { 1669 | filter: invert(100%); 1670 | } 1671 | 1672 | .minerva__tab-container .minerva__tab.selected { 1673 | background-color: #444; 1674 | border-bottom: 2px solid #666; 1675 | padding: 6px; 1676 | } 1677 | } 1678 | 1679 | @-moz-document domain("fr.wikipedia.org"), domain("fr.m.wikipedia.org") { 1680 | /* French version */ 1681 | 1682 | #accueil_2017_en-tete { 1683 | background-image: none !important; 1684 | } 1685 | 1686 | .mw-article-toolbar-container { 1687 | background: none !important; 1688 | } 1689 | 1690 | #mw-head { 1691 | height: 40px !important; 1692 | } 1693 | 1694 | #mw-panel-toc { 1695 | background-color: #222 !important; 1696 | border: 1px solid #666 !important; 1697 | } 1698 | 1699 | #mw-panel-toc::after { 1700 | background: none !important; 1701 | } 1702 | 1703 | .mw-body { 1704 | margin-top: 1px !important; 1705 | border-top: none; 1706 | } 1707 | 1708 | .bandeau-section { 1709 | background-color: #333 !important; 1710 | border: 1px solid #666 !important; 1711 | } 1712 | 1713 | .autres-projets { 1714 | background-color: #333 !important; 1715 | border: 1px solid #666 !important; 1716 | } 1717 | 1718 | .vector-toc { 1719 | background-color: #222 !important; 1720 | border: none; 1721 | } 1722 | 1723 | .bandeau-container { 1724 | background-color: #222 !important; 1725 | color: #ddd !important; 1726 | } 1727 | 1728 | 1729 | .mw-widget-dateInputWidget-handle, 1730 | .oo-ui-widget, 1731 | .uls-search, 1732 | .uls-language-list, 1733 | #uls-settings-block, 1734 | .legendtextlike, 1735 | .wvui-input__input, 1736 | .wvui-button, 1737 | .wvui-typeahead-search__suggestion, 1738 | .wvui-typeahead-suggestion__title, 1739 | .wvui-typeahead-search__suggestions__footer { 1740 | background-color: #333 !important; 1741 | color: #ddd !important; 1742 | } 1743 | 1744 | #mw-sidebar-button { 1745 | background-color: #ddd !important; 1746 | } 1747 | 1748 | #p-personal { 1749 | filter: invert(90%); 1750 | } 1751 | 1752 | .wvui-typeahead-suggestion__thumbnail { 1753 | background-color: #aaa !important; /* Temporary filling while fixing the thumbnail previews in searchbar */ 1754 | } 1755 | 1756 | #mw-panel.mw-sidebar { 1757 | background: #222 !important; 1758 | } 1759 | 1760 | .uls-lcd, #uls-settings-block, #search.uls-search { 1761 | background-color: #444 !important; 1762 | color: #eee !important; 1763 | } 1764 | 1765 | .bloc { 1766 | background-color: #444 !important; 1767 | } 1768 | 1769 | #left-navigation { 1770 | margin-left: 0 !important; 1771 | } 1772 | 1773 | .vector-toc, .vector-toc::after { 1774 | background: #222 !important; 1775 | } 1776 | 1777 | } 1778 | 1779 | @-moz-document domain("de.wikipedia.org"), domain("de.m.wikipedia.org") { 1780 | /* German version */ 1781 | 1782 | .hauptseite-box-content { 1783 | background-color: #333 !important; 1784 | border-color: #444 !important; 1785 | } 1786 | 1787 | .hauptseite-box-title { 1788 | background-color: #444 !important; 1789 | } 1790 | 1791 | #ca-nstab-main { 1792 | margin-left: 55px !important; 1793 | } 1794 | 1795 | #p-logo { 1796 | background-color: #222 !important; 1797 | height: 200px !important; 1798 | margin-top: 30px !important; 1799 | margin-bottom: -40px !important; 1800 | } 1801 | 1802 | .mw-wiki-logo { 1803 | background-color: #222 !important; 1804 | background-image: var(--wiki-logo) !important; 1805 | background-size: 115px !important; 1806 | margin-left: 20px !important; 1807 | padding-left: 8rem !important; 1808 | padding-bottom: 7rem !important; 1809 | display: inline !important; 1810 | } 1811 | 1812 | table > * > tr.hintergrundfarbe1 > th, table > * > tr > th.hintergrundfarbe1, table.hintergrundfarbe1, .hintergrundfarbe1 { 1813 | background-color: #444 !important; 1814 | border: 1px solid #666 !important; 1815 | } 1816 | } 1817 | 1818 | @-moz-document domain("ru.wikipedia.org"), domain("ru.m.wikipedia.org") { 1819 | /* Russian version */ 1820 | 1821 | #ca-nstab-main { 1822 | margin-left: 55px !important; 1823 | } 1824 | 1825 | #p-logo { 1826 | background-color: #222 !important; 1827 | height: 200px !important; 1828 | margin-top: 30px !important; 1829 | margin-bottom: -40px !important; 1830 | } 1831 | 1832 | .mw-wiki-logo { 1833 | background-color: #222 !important; 1834 | background-image: var(--wiki-logo) !important; 1835 | background-size: 115px !important; 1836 | margin-left: 20px !important; 1837 | padding-left: 8rem !important; 1838 | padding-bottom: 7rem !important; 1839 | display: inline !important; 1840 | } 1841 | 1842 | /* Заглавная страница */ 1843 | 1844 | .main-top { 1845 | background-color: #333 !important; 1846 | border: 1px solid #555 !important; 1847 | } 1848 | 1849 | .main-top-left { 1850 | background-image: linear-gradient(to right, #222, #222, transparent) !important; 1851 | } 1852 | 1853 | .main-top-articleCount { 1854 | background-image: linear-gradient(to left, #333, #333, transparent, transparent) !important; 1855 | } 1856 | 1857 | .main-box { 1858 | background-color: #333 !important; 1859 | border: 1px solid #555 !important; 1860 | } 1861 | 1862 | /* Конец */ 1863 | 1864 | .ts-Врезка, .ts-Скрытый_блок-title { 1865 | background-color: #444 !important; 1866 | border: 1px solid #666 !important; 1867 | } 1868 | } 1869 | 1870 | @-moz-document domain("commons.wikimedia.org"), domain("wiktionary.org"), domain("wikibooks.org"), domain("wikinews.org"), domain("wikisource.org"), domain("wikivoyage.org") { 1871 | /* Wikimedia Commons super quick fixes */ 1872 | 1873 | .mw-wiki-logo { 1874 | filter: invert(87%) !important; 1875 | } 1876 | 1877 | #p-namespaces { 1878 | margin-left: 50px !important; 1879 | } 1880 | 1881 | 1882 | .licensetpl_wrapper, .responsive-license-cc { 1883 | background-color: #333 !important; 1884 | border: 1px solid #555 !important; 1885 | } 1886 | } 1887 | 1888 | @-moz-document domain("wiktionary.org"){ 1889 | /* Wiktionary super quick fixes */ 1890 | 1891 | h1 { 1892 | background-color: #2c354f !important; 1893 | } 1894 | 1895 | #firstHeading, .boite, .bandeau-voir, .derivedterms { 1896 | background-color: transparent !important; 1897 | } 1898 | 1899 | .mw-body-content h2 { 1900 | background-color: #2c354f !important; 1901 | } 1902 | 1903 | .NavFrame { 1904 | background-color: #333 !important; 1905 | } 1906 | } 1907 | --------------------------------------------------------------------------------