MediaWiki:Common.css

From Mona Mahall / Asli Serbest
Revision as of 14:37, 11 March 2025 by Cmfiy (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Gesamte Seite schwarz machen */
body {
    background-color: #000 !important;
    color: #fff !important;
}

/* Inhaltsbereich (Artikel) */
.mw-body {
    background-color: #111 !important;  /* Dunkler als Hintergrund für Kontrast */
    color: #fff !important;
}

/* Kopfzeile und Navigation */
#mw-head,
#p-personal,
#mw-panel {
    background-color: #000 !important;
    color: #fff !important;
}

/* Menüleisten und Boxen */
.vector-menu-content,
.vector-menu-content ul {
    background-color: #000 !important;
    color: #fff !important;
}

/* Eingabefelder, Suchbox */
input, textarea {
    background-color: #222 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}

/* Links */
a {
    color: #4aa5ff !important;
}
a:visited {
    color: #9c77ff !important;
}

/* Tabellen schwarz machen */
table {
    background-color: #111 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}
th, td {
    border: 1px solid #555 !important;
}

/* Dropdown-Menüs */
.vector-dropdown {
    background-color: #000 !important;
    color: #fff !important;
}

/* Footer (unten) */
#footer {
    background-color: #000 !important;
    color: #fff !important;
}