MediaWiki:Common.css: Difference between revisions

From Mona Mahall / Asli Serbest
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: body { background-color: #000 !important; Schwarzer Hintergrund: color: #fff !important; Weiße Schrift: } Links besser sichtbar machen: a { color: #4aa5ff !important; Blau für Links: } a:visited { color: #9c77ff !important; Lila für besuchte Links: } Navigationsleiste und Boxen anpassen: .mw-body { background-color: #222 !important; /* Dunkleres Grau für Hauptinhal..."
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
body {
body {
     background-color: #000 !important; /* Schwarzer Hintergrund */
     background-color: #000 !important;
     color: #fff !important; /* Weiße Schrift */
     color: #fff !important;
}
}
/* Links besser sichtbar machen */
a {
a {
     color: #4aa5ff !important; /* Blau für Links */
     color: #4aa5ff !important;
}
}
a:visited {
a:visited {
     color: #9c77ff !important; /* Lila für besuchte Links */
     color: #9c77ff !important;
}
}
/* Navigationsleiste und Boxen anpassen */
.mw-body {
.mw-body {
     background-color: #222 !important; /* Dunkleres Grau für Hauptinhalte */
     background-color: #222 !important;
}
}

Revision as of 14:36, 11 March 2025

body {
    background-color: #000 !important;
    color: #fff !important;
}
a {
    color: #4aa5ff !important;
}
a:visited {
    color: #9c77ff !important;
}
.mw-body {
    background-color: #222 !important;
}