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