MediaWiki:Common.css: Difference between revisions

From WytheriaWiki
(Replaced content with "→‎CSS placed here will be applied to all skins: body { background-color: #1f1d21; overflow-y: scroll; }")
Tag: Replaced
No edit summary
Line 3: Line 3:
background-color: #1f1d21;
background-color: #1f1d21;
overflow-y: scroll;
overflow-y: scroll;
}
a {
    color: #ffffff;
}
a:hover {
    color: #ffffff;
    text-decoration: underline;
}
a:visited {
    color: #eeeeee;
}
}

Revision as of 02:53, 1 January 2024

/* CSS placed here will be applied to all skins */
body {
	background-color: #1f1d21;
	overflow-y: scroll;
}
a {
    color: #ffffff;
}
a:hover {
    color: #ffffff;
    text-decoration: underline;
}
a:visited {
    color: #eeeeee;
}