MediaWiki:Common.css: Difference between revisions
Appearance
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..." |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Hackerpedia Dark Matrix Theme */ | /* Hackerpedia Dark Matrix Theme */ | ||
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap'); | |||
h1, h2, h3, h4, body { | |||
font-family: 'Share Tech Mono', monospace !important; | |||
} | |||
/* Background and Text Colors */ | /* Background and Text Colors */ | ||
Revision as of 03:20, 14 January 2026
/* CSS placed here will be applied to all skins */
/* Hackerpedia Dark Matrix Theme */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
h1, h2, h3, h4, body {
font-family: 'Share Tech Mono', monospace !important;
}
/* 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;
}