Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
:root {
--main-bg-color-primary: #202020;
--main-bg-color-secondary: #1b1b1b;
--text-color: #c4ae5f;
--link-color: #fa5c5c;
}
body {
body {
background-color: red;
background-color: var(--main-bg-color-primary) !important;
color: var(--text-color) !important;
}
}
a {
a {
color: red;
color: var(--link-color);
}
}

Revision as of 13:13, 6 November 2024

/* CSS placed here will be applied to all skins */

:root {
--main-bg-color-primary: #202020;
--main-bg-color-secondary: #1b1b1b;
--text-color: #c4ae5f;
--link-color: #fa5c5c;
}

body {
background-color: var(--main-bg-color-primary) !important;
color: var(--text-color) !important;
}

a {
color: var(--link-color);
}