MediaWiki:Common.css: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 4: | Line 4: | ||
a.mw-logo:visited { | a.mw-logo:visited { | ||
color: #0645ad; /* MediaWiki default blue */ | color: #0645ad; /* MediaWiki default blue */ | ||
} | |||
/* === Page Title Styling === */ | |||
.firstHeading { | |||
font-family: "Press Start 2P", monospace; /* retro pixel font */ | |||
color: #00ffcc; /* neon cyan */ | |||
text-shadow: 2px 2px #000000; /* arcade glow */ | |||
} | |||
/* Remove visited purple effect */ | |||
.firstHeading a:link, | |||
.firstHeading a:visited { | |||
color: #00ffcc; /* same color always */ | |||
text-decoration: none; | |||
} | |||
/* === Sidebar Styling === */ | |||
#mw-panel { | |||
background-color: #111111; /* dark background */ | |||
border-right: 3px solid #00ffcc; | |||
} | |||
#mw-panel a { | |||
color: #ffcc00; /* golden retro link */ | |||
font-weight: bold; | |||
} | |||
#mw-panel a:hover { | |||
color: #ffffff; | |||
background-color: #333333; | |||
text-decoration: underline; | |||
} | |||
/* === Content Area === */ | |||
#content { | |||
background-color: #1a1a1a; | |||
color: #e0e0e0; | |||
font-family: "Courier New", monospace; | |||
padding: 20px; | |||
border: 2px solid #00ffcc; | |||
} | |||
/* === Links === */ | |||
a:link, | |||
a:visited { | |||
color: #ffcc00; /* consistent retro yellow */ | |||
} | |||
a:hover { | |||
color: #00ffcc; | |||
text-decoration: underline; | |||
} | |||
/* === Footer === */ | |||
#footer { | |||
background-color: #111111; | |||
color: #888888; | |||
border-top: 2px solid #00ffcc; | |||
padding: 10px; | |||
text-align: center; | |||
} | } | ||
Revision as of 22:26, 15 November 2025
/* CSS placed here will be applied to all skins */
a.mw-logo:link,
a.mw-logo:visited {
color: #0645ad; /* MediaWiki default blue */
}
/* === Page Title Styling === */
.firstHeading {
font-family: "Press Start 2P", monospace; /* retro pixel font */
color: #00ffcc; /* neon cyan */
text-shadow: 2px 2px #000000; /* arcade glow */
}
/* Remove visited purple effect */
.firstHeading a:link,
.firstHeading a:visited {
color: #00ffcc; /* same color always */
text-decoration: none;
}
/* === Sidebar Styling === */
#mw-panel {
background-color: #111111; /* dark background */
border-right: 3px solid #00ffcc;
}
#mw-panel a {
color: #ffcc00; /* golden retro link */
font-weight: bold;
}
#mw-panel a:hover {
color: #ffffff;
background-color: #333333;
text-decoration: underline;
}
/* === Content Area === */
#content {
background-color: #1a1a1a;
color: #e0e0e0;
font-family: "Courier New", monospace;
padding: 20px;
border: 2px solid #00ffcc;
}
/* === Links === */
a:link,
a:visited {
color: #ffcc00; /* consistent retro yellow */
}
a:hover {
color: #00ffcc;
text-decoration: underline;
}
/* === Footer === */
#footer {
background-color: #111111;
color: #888888;
border-top: 2px solid #00ffcc;
padding: 10px;
text-align: center;
}