MediaWiki:Gadget-Darkmode.css: Unterschied zwischen den Versionen

Aus SchnuppTrupp
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „body { background-color: #000000; /* Set the background color to black */ color: #ffffff; Set the color of text to white: } a { color: #1a0dab; /*Set…“)
 
Zeile 10: Zeile 10:
 
a:visited {
 
a:visited {
 
color: #609; /* Set the color of visited links to purple */  
 
color: #609; /* Set the color of visited links to purple */  
 +
}
 +
 +
mw-head-base {
 +
background-color: #000000; /* Set the background color of the header to black */
 +
color: #ffffff; /* Set the color of text to white */
 
}
 
}

Version vom 8. Dezember 2023, 01:25 Uhr

body {
	background-color: #000000; /* Set the background color to black */
	color: #ffffff; /* Set the color of text to white */
}

a {
	color: #1a0dab; /*Set the color of links to blue */
}

a:visited {
	color: #609; /* Set the color of visited links to purple */ 
}

mw-head-base {
	background-color: #000000; /* Set the background color of the header to black */
	color: #ffffff; /* Set the color of text to white */
}