MediaWiki:Common.css: Difference between revisions

From Mona Mahall / Asli Serbest
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* 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;
}
/* Hauptnavigation oben */
/* Hauptnavigation oben */
#mw-head,
#mw-head,

Revision as of 15:01, 11 March 2025

/* 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;
}


/* Hauptnavigation oben */
#mw-head,
#p-personal,
#left-navigation,
#right-navigation {
    background-color: #000 !important; /* Schwarzer Hintergrund */
    color: #fff !important; /* Weiße Schrift */
}

/* Tabs ("Read", "Discussion", etc.) */
#p-views .vector-menu-content ul {
    background-color: #000 !important;
}

/* Einzelne Tabs */
#p-views li {
    background-color: #000 !important;
    border: 1px solid #444 !important; /* Optional: Dunkle Ränder */
}

/* Falls noch weiß auftaucht, versuche dies für spezifische Skins */
.vector-menu-tabs li,
.vector-menu-tabs a {
    background-color: #000 !important;
    color: #fff !important;
}

/* Dropdown-Menüs (z. B. "Mehr") */
.vector-dropdown {
    background-color: #000 !important;
}

/* Suchleiste */
#p-search input {
    background-color: #222 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}