Jump to content

MediaWiki:Common.css

From Hackerpedia
Revision as of 01:15, 15 January 2026 by Wikiadmin (talk | contribs)

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 Professional Tech Theme */
body {
    background-color: #0b0e14 !important; /* Near black */
    color: #ffffff !important;           /* Pure white text - easiest to read */
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Headings in high-contrast yellow */
h1, h2, h3 {
    color: #ffcc00 !important; 
    border-bottom: 1px solid #333;
    font-family: 'Courier New', monospace;
}

/* The Definition Container */
.cyber-term-box {
    background-color: #1a1f26; /* Dark slate box */
    border: 1px solid #3d444d;
    border-left: 6px solid #ffcc00; /* Thick yellow bar */
    padding: 25px;
    margin: 20px 0;
    color: #ffffff; /* Explicitly white text */
    border-radius: 4px;
}

/* Force links to be a clear, bright blue */
a {
    color: #58a6ff !important;
    font-weight: bold;
}

a:visited {
    color: #a371f7 !important;
}