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.
body {
background-color: #080f22; /* Replace '#yourColorCode' with your chosen color */
}
#mw-head {
background-color: #2c2c2c; /* Slightly lighter dark shade for the top bar */
color: #ffffff;
}
#mw-head {
background-color: #2c2c2c; /* Slightly lighter dark shade for the top bar */
color: #ffffff;
}
#mw-panel {
background-color: #2c2c2c; /* Synchronizing with the top bar */
color: #ffffff;
}
#mw-panel {
background-color: #2c2c2c; /* Synchronizing with the top bar */
color: #ffffff;
}
/* Example for the sidebar */
#mw-panel {
background-image: url('https://oldschool.runescape.wiki/images/Old_School_RuneScape_Wiki_background_darkmode.jpg');
background-size: cover;
background-repeat: no-repeat;
background-color: #080f22; /* This sets the background color of the entire sidebar */
}
#mw-panel::after {
content: ''; /* Necessary for pseudo-elements */
display: block; /* Makes it a block element */
height: 50px; /* The height of the bottom bar you want to show */
background-color: #080f22; /* The color you want for the bottom of the sidebar */
}
/* Example for the top bar */
#mw-head {
background-image: url('https://oldschool.runescape.wiki/images/Old_School_RuneScape_Wiki_background_darkmode.jpg');
background-size: cover;
background-repeat: no-repeat;
}
#content {
background-color: #172136; /* Light blue background */
}
/* Change the text color within the content area */
.mw-body-content {
color: #ffffff; /* This sets the text color; replace with your desired color code */
}
/* Change the text color of paragraphs within the content area */
.mw-body-content p {
color: #ffffff; /* This sets the text color for paragraphs; replace with your desired color code */
}
a {
color: #9cd9f0; /* A light blue color for links */
}
a:visited {
color: #829da7; /* A more subdued color for visited links */
}