MediaWiki:Common.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/* main background */
body {
background-color: #202225;
font-family: Arial,sans-serif;
}
/* top gradient */
#mw-page-base {
background-image: linear-gradient(#1c1f23 50%, #202225 100%);
}
/* tabs */
.vectorTabs {
background-image: linear-gradient(#1c1f23 50%, #202225 100%);
}
.vectorTabs ul li { /* tab background */
background-image: linear-gradient(#1c1f23 50%, #202225 100%);
}
.vectorTabs li a { /* tab links */
color: #c6c7c9;
}
/* article body */
h1, h2, h3, h4, h5, h6 {
color: #f5f5f5;
}
.mw-body {
background-color: #36393f;
color: #c6c7c9;
border: 1px solid #2f3136;
}
ul {
list-style-image: unset;
}
/* links */
a {
color: #f5f5f5;
}
a.new {
color: #f04747;
border-bottom: 1px dashed;
}
a:hover .new {
color: #f04747;
text-decoration-style: none;
border-bottom: none;
}
a.new, #p-personal a.new {
color: #f04747;
}
.mw-parser-output a.external {
color: #f5f5f5;
}
.mw-parser-output a:visited .external {
color: #f5f5f5;
}
/* left panel */
#mw-panel .portal .body li a {
color: #f5f5f5;
}
#mw-panel .portal h3 {
color: #c6c7c9;
}
/* footer */
#footer ul li {
color: #c6c7c9;
}
/* warning box */
.warningbox {
color: #f5f5f5;
border-color: #f04747;
border-radius: 10px;
background-color: #f04747;
}