User:Talonsin/darkangels-styles.css: Difference between revisions
No edit summary |
No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* __TEMPLATESTYLES__ */ | /* __TEMPLATESTYLES__ */ | ||
/* DARK ANGELS INVERTED COLOR THEME */ | |||
/* ===== GLOBAL OVERRIDES ===== */ | |||
.darkangels-theme, | |||
.darkangels-theme body, | |||
.darkangels-theme #content, | |||
.darkangels-theme .mw-body, | |||
.darkangels-theme #bodyContent { | |||
background: #111 !important; /* Near-black instead of pure black */ | |||
color: #ddd !important; /* Light gray for readability */ | |||
filter: none !important; | |||
} | |||
/* Content container */ | |||
.darkangels-theme #bodyContent { | |||
max-width: 1000px; | |||
margin: 0 auto; | |||
padding: 20px; | |||
} | |||
/* ===== TYPOGRAPHY ===== */ | |||
.darkangels-theme { | |||
font-family: 'Segoe UI', Roboto, sans-serif; | |||
line-height: 1.6; | |||
} | |||
.darkangels-theme h1, | |||
.darkangels-theme h2, | |||
.darkangels-theme h3 { | |||
color: #ff66b3 !important; /* Bright pink instead of green */ | |||
border-bottom: 2px solid #444 !important; | |||
padding-bottom: 5px; | |||
font-weight: 700; | |||
} | |||
/* ===== ARMY RULES ===== */ | |||
.darkangels-theme .army-rules-container { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 20px; | |||
margin: 25px 0; | |||
} | |||
.darkangels-theme .army-rule-box { | .darkangels-theme .army-rule-box { | ||
border: 1px solid # | border: 1px solid #444 !important; | ||
border-radius: | border-radius: 5px; | ||
width: 100%; | |||
max-width: 500px; | max-width: 500px; | ||
background: | background: #222 !important; /* Dark gray background */ | ||
overflow: hidden; | |||
} | } | ||
.darkangels-theme .army-rule-header { | .darkangels-theme .army-rule-header { | ||
background-color: # | background-color: #ff66b3 !important; /* Pink headers */ | ||
color: | color: #111 !important; /* Dark text on pink */ | ||
padding: | padding: 10px 15px; | ||
font-weight: | font-weight: 700; | ||
font-size: 16px; | font-size: 16px; | ||
} | } | ||
.darkangels-theme .army-rule-content { | .darkangels-theme .army-rule-content { | ||
padding: | padding: 15px; | ||
font-size: 14px; | font-size: 14px; | ||
line-height: 1. | line-height: 1.5; | ||
color: #ddd !important; | |||
} | } | ||
/* | /* ===== KEYWORDS ===== */ | ||
.darkangels-theme .keyword { | .darkangels-theme .keyword { | ||
font-weight: | font-weight: 700; | ||
color: #444; | text-transform: uppercase; | ||
color: #ff88cc !important; /* Lighter pink */ | |||
letter-spacing: 0.5px; | |||
} | |||
/* ===== TABLES ===== */ | |||
.darkangels-theme .wikitable { | |||
width: 100%; | |||
margin: 20px 0; | |||
border-collapse: collapse; | |||
font-size: 13px; | |||
background: #222 !important; /* Dark gray */ | |||
border: 1px solid #444 !important; | |||
} | |||
.darkangels-theme .wikitable th { | |||
background-color: #ff66b3 !important; /* Pink headers */ | |||
color: #111 !important; /* Dark text */ | |||
padding: 8px 12px; | |||
text-align: left; | |||
} | |||
.darkangels-theme .wikitable td { | |||
padding: 8px 12px; | |||
border: 1px solid #444 !important; | |||
vertical-align: top; | |||
color: #ddd !important; | |||
} | |||
.darkangels-theme .wikitable tr:nth-child(even) { | |||
background-color: #333 !important; /* Slightly lighter gray */ | |||
} | |||
/* ===== SPECIAL CASES ===== */ | |||
.darkangels-theme a { | |||
color: #ff88cc !important; /* Lighter pink links */ | |||
text-decoration: underline; | |||
} | |||
.darkangels-theme pre, | |||
.darkangels-theme code { | |||
background: #333 !important; | |||
border: 1px solid #555 !important; | |||
color: #eee !important; | |||
} | } |