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 */
a.mw-logo:link,
a.mw-logo:visited {
color: #0645ad; /* MediaWiki default blue */
}
/* === Page Title Styling === */
.firstHeading {
font-family: "Press Start 2P", monospace; /* retro pixel font */
color: #00ffcc; /* neon cyan */
text-shadow: 2px 2px #000000; /* arcade glow */
}
/* Remove visited purple effect */
.firstHeading a:link,
.firstHeading a:visited {
color: #00ffcc; /* same color always */
text-decoration: none;
}
/* === Sidebar Styling === */
#mw-panel {
background-color: #111111; /* dark background */
border-right: 3px solid #00ffcc;
}
#mw-panel a {
color: #ffcc00; /* golden retro link */
font-weight: bold;
}
#mw-panel a:hover {
color: #ffffff;
background-color: #333333;
text-decoration: underline;
}
/* === Content Area === */
#content {
background-color: #1a1a1a;
color: #e0e0e0;
font-family: "Courier New", monospace;
padding: 20px;
border: 2px solid #00ffcc;
}
/* === Links === */
a:link,
a:visited {
color: #ffcc00; /* consistent retro yellow */
}
a:hover {
color: #00ffcc;
text-decoration: underline;
}
/* === Footer === */
#footer {
background-color: #111111;
color: #888888;
border-top: 2px solid #00ffcc;
padding: 10px;
text-align: center;
}