MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Hackerpedia | /* Hackerpedia Professional Tech Theme */ | ||
body { | body { | ||
background-color: # | background-color: #0b0e14 !important; /* Near black */ | ||
color: #ffffff; /* Pure white text | color: #ffffff !important; /* Pure white text - easiest to read */ | ||
font-family: ' | font-family: 'Segoe UI', Arial, sans-serif; | ||
} | } | ||
/* | /* Headings in high-contrast yellow */ | ||
h1, h2, h3 { | h1, h2, h3 { | ||
color: # | color: #ffcc00 !important; | ||
border-bottom: 1px solid #333; | |||
font-family: 'Courier New', monospace; | |||
} | } | ||
/* The Definition | /* The Definition Container */ | ||
.cyber-term-box { | .cyber-term-box { | ||
background-color: # | background-color: #1a1f26; /* Dark slate box */ | ||
border: 1px solid # | border: 1px solid #3d444d; | ||
border-left: | border-left: 6px solid #ffcc00; /* Thick yellow bar */ | ||
padding: 25px; | padding: 25px; | ||
margin: 20px 0; | margin: 20px 0; | ||
border-radius: | color: #ffffff; /* Explicitly white text */ | ||
border-radius: 4px; | |||
} | } | ||
/* | /* Force links to be a clear, bright blue */ | ||
a { | a { | ||
color: #58a6ff !important; | color: #58a6ff !important; | ||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
a: | a:visited { | ||
color: #a371f7 !important; | |||
} | } | ||
Revision as of 01:15, 15 January 2026
/* 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;
}