MediaWiki:Common.css
Appearance
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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Hackerpedia High-Contrast Lab Theme */
body {
background-color: #0d1117; /* Deepest Obsidian */
color: #ffffff; /* Pure white text for maximum readability */
font-family: 'Inter', -apple-system, sans-serif;
line-height: 1.6;
}
/* Bright Yellow for Technical Headers - High Visibility */
h1, h2, h3 {
color: #f2ca27;
font-family: 'monospace';
border-bottom: 2px solid #30363d;
}
/* The Definition Box */
.cyber-term-box {
background-color: #161b22;
border: 1px solid #30363d;
border-left: 5px solid #f2ca27; /* Yellow accent */
padding: 25px;
margin: 20px 0;
border-radius: 8px;
}
/* Links */
a {
color: #58a6ff !important; /* Standard "Dev" Blue */
font-weight: bold;
}
a:hover {
text-decoration: underline;
}