MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→Background and general colors: body { background-color: #1c0f0a; color: #fefefe; font-family: 'Courier New', monospace; } →Header title: #firstHeading { color: #ff2c2c; font-size: 3em; font-weight: bold; text-shadow: 0 0 8px #ff0000; text-align: center; margin-bottom: 20px; } →Navigation styles: #mw-panel { background-color: #120a07; color: #fff; padding: 1em; border-right: 2px solid #ff4444; } #p-naviga..." |
No edit summary |
||
Line 1: | Line 1: | ||
/* | /* === Global Dark Theme === */ | ||
body { | body.madness-theme, | ||
body.skin-vector { | |||
background-color: #1a0e08; | |||
color: #f0e6d2; | |||
font-family: 'Courier New', monospace; | |||
} | } | ||
/* | /* === Headings and Text === */ | ||
#firstHeading { | #firstHeading { | ||
font-size: 3em; | |||
font-weight: bold; | |||
color: #ff2c2c; | |||
text-shadow: 0 0 8px #ff0000; | |||
text-align: center; | |||
margin-bottom: 20px; | |||
} | } | ||
.mw-body { | |||
background-color: #2a1b14; | |||
border: 2px solid #ff3b3b; | |||
border-radius: 10px; | |||
box-shadow: 0 0 12px #ff0000; | |||
padding: 20px; | |||
} | } | ||
/* === Sidebar Links === */ | |||
# | #mw-panel { | ||
background-color: #0e0604; | |||
border-right: 2px solid #ff2c2c; | |||
padding-top: 20px; | |||
width: 200px; | |||
} | } | ||
#mw-panel a { | |||
# | color: #ffd966 !important; | ||
background-color: #1a120e; | |||
padding: 8px; | |||
border-radius: 5px; | |||
display: block; | |||
margin-bottom: 5px; | |||
text-decoration: none; | |||
} | } | ||
#mw-panel a:hover { | |||
# | background-color: #333; | ||
color: #fff !important; | |||
} | } | ||
#p- | /* === Collapsible Tool Panel === */ | ||
#p-tb { | |||
position: fixed; | |||
right: 0; | |||
top: 50px; | |||
background-color: #120a07; | |||
color: #ffd966; | |||
padding: 10px; | |||
border: 2px solid #ff3b3b; | |||
border-radius: 10px 0 0 10px; | |||
max-width: 220px; | |||
z-index: 999; | |||
transition: transform 0.3s ease; | |||
} | } | ||
#p-tb.collapsed { | |||
# | transform: translateX(100%); | ||
} | } | ||
#p-tb-toggle { | |||
position: fixed; | |||
right: 0; | |||
top: 10px; | |||
background-color: #ff2c2c; | |||
color: #fff; | |||
padding: 6px 12px; | |||
cursor: pointer; | |||
z-index: 1000; | |||
font-weight: bold; | |||
border-radius: 6px 0 0 6px; | |||
} | } | ||
/* Hide old vector sticky header */ | |||
.vector-sticky-header { | |||
display: none !important; | |||
/* | |||
} | } |
Revision as of 13:44, 14 May 2025
/* === Global Dark Theme === */
body.madness-theme,
body.skin-vector {
background-color: #1a0e08;
color: #f0e6d2;
font-family: 'Courier New', monospace;
}
/* === Headings and Text === */
#firstHeading {
font-size: 3em;
font-weight: bold;
color: #ff2c2c;
text-shadow: 0 0 8px #ff0000;
text-align: center;
margin-bottom: 20px;
}
.mw-body {
background-color: #2a1b14;
border: 2px solid #ff3b3b;
border-radius: 10px;
box-shadow: 0 0 12px #ff0000;
padding: 20px;
}
/* === Sidebar Links === */
#mw-panel {
background-color: #0e0604;
border-right: 2px solid #ff2c2c;
padding-top: 20px;
width: 200px;
}
#mw-panel a {
color: #ffd966 !important;
background-color: #1a120e;
padding: 8px;
border-radius: 5px;
display: block;
margin-bottom: 5px;
text-decoration: none;
}
#mw-panel a:hover {
background-color: #333;
color: #fff !important;
}
/* === Collapsible Tool Panel === */
#p-tb {
position: fixed;
right: 0;
top: 50px;
background-color: #120a07;
color: #ffd966;
padding: 10px;
border: 2px solid #ff3b3b;
border-radius: 10px 0 0 10px;
max-width: 220px;
z-index: 999;
transition: transform 0.3s ease;
}
#p-tb.collapsed {
transform: translateX(100%);
}
#p-tb-toggle {
position: fixed;
right: 0;
top: 10px;
background-color: #ff2c2c;
color: #fff;
padding: 6px 12px;
cursor: pointer;
z-index: 1000;
font-weight: bold;
border-radius: 6px 0 0 6px;
}
/* Hide old vector sticky header */
.vector-sticky-header {
display: none !important;
}