Jump to content

MediaWiki:Common.css

From Hackerpedia
Revision as of 03:18, 14 January 2026 by Wikiadmin (talk | contribs) (Created page with "CSS placed here will be applied to all skins: Hackerpedia Dark Matrix Theme: Background and Text Colors: body, #content, #mw-head, #mw-panel { background-color: #0d0d0d !important; color: #00ff00 !important; } Links: Matrix Green and White: a { color: #00ff00 !important; } a:visited { color: #008f11 !important; } a:hover { color: #ffffff !important; text-decoration: underline !important; } Content Box Border: #content { border: 1px...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
/* CSS placed here will be applied to all skins */
/* Hackerpedia Dark Matrix Theme */

/* Background and Text Colors */
body, #content, #mw-head, #mw-panel {
    background-color: #0d0d0d !important;
    color: #00ff00 !important;
}

/* Links: Matrix Green and White */
a { color: #00ff00 !important; }
a:visited { color: #008f11 !important; }
a:hover { color: #ffffff !important; text-decoration: underline !important; }

/* Content Box Border */
#content {
    border: 1px solid #333 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #00ff00 !important;
    font-family: 'Courier New', Courier, monospace !important;
    border-bottom: 1px solid #333 !important;
}

/* Terminal-style code blocks */
pre, code {
    background-color: #1a1a1a !important;
    color: #ff0033 !important; /* Red for code/commands */
    border: 1px solid #333 !important;
}

/* Navigation Menu text */
.mw-body-content {
    font-size: 1.1em;
}