MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 7: | Line 7: | ||
/* Inhaltsbereich (Artikel) */ | /* Inhaltsbereich (Artikel) */ | ||
.mw-body { | .mw-body { | ||
background-color: # | background-color: #000 !important; /* Dunkler als Hintergrund für Kontrast */ | ||
color: #fff !important; | color: #fff !important; | ||
} | } | ||
| Line 19: | Line 19: | ||
} | } | ||
/* Eingabefelder, Suchbox */ | /* Eingabefelder, Suchbox */ | ||
Revision as of 14:52, 11 March 2025
/* Gesamte Seite schwarz machen */
body {
background-color: #000 !important;
color: #fff !important;
}
/* Inhaltsbereich (Artikel) */
.mw-body {
background-color: #000 !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;
}
/* Eingabefelder, Suchbox */
input, textarea {
background-color: #000 !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: #00f !important;
color: #fff !important;
}
/* Footer (unten) */
#footer {
background-color: #000 !important;
color: #fff !important;
}