MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
--text-content: rgb(255 255 255 / 80%); | --text-content: rgb(255 255 255 / 80%); | ||
background: var(--bg-color); | background-color: var(--bg-color); | ||
background-image: url("https://boardgamebarrage.com/w/bg.png"); | |||
background-position: center; | |||
background-size: 1275px; | |||
--color-primary: var(--interface-blue); | --color-primary: var(--interface-blue); | ||
} | } | ||
Revision as of 16:17, 4 April 2021
/* All CSS here will be loaded for users of the Citizen skin */
:root.skin-citizen-light {
--bgb-blue: rgb(27 62 116 / 100%);
--interface-blue: rgb(74 112 170 / 100%);
--bg-color: rgb(220 235 250 / 100%);
--text-header: rgb(0 0 0 / 100%);
--text-content: rgb(0 0 0 / 80%);
background: var(--bg-color);
--color-primary: var(--interface-blue);
}
:root.skin-citizen-dark {
--bgb-blue: rgb(27 62 116 / 100%);
--interface-blue: rgb(74 112 170 / 100%);
--bg-color: rgb(20 35 63 / 100%);
--text-header: rgb(255 255 255 / 100%);
--text-content: rgb(255 255 255 / 80%);
background-color: var(--bg-color);
background-image: url("https://boardgamebarrage.com/w/bg.png");
background-position: center;
background-size: 1275px;
--color-primary: var(--interface-blue);
}
.mw-header-siteinfo .mw-wiki-title .mw-logo-wordmark {
color: var(--text-header);
}
body.mediawiki {
background-color: var(--bg-color);
background-image: url("https://boardgamebarrage.com/w/bg.png");
background-position: center;
background-size: 1275px;
background-repeat: repeat !important;
padding-left: 10%;
padding-right: 10%;
}
body {
background-color: var(--bg-color);
background-image: url("https://boardgamebarrage.com/w/bg.png");
background-position: center;
background-size: 1275px;
background-repeat: repeat !important;
color: var(--text-content);
}
.mw-body {
background-color: var(--bg-color);
background-image: url("https://boardgamebarrage.com/w/bg.png");
background-position: center;
background-size: 1275px;
}
.mw-footer {
background: var(--bgb-blue);
}
.mw-datatable td {
background-color: var(--bg-color);
}
.mw-datatable th {
background-color: var(--interface-blue);
}
/*
.last-modified-bar {
background: var(--bg-color);
}
.last-modified-bar-content {
background: var(--bg-color);
}
*/