User:Talonsin/darkangels-styles.css: Difference between revisions
From Eternum McEdition
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* __TEMPLATESTYLES__ */ | /* __TEMPLATESTYLES__ */ | ||
/* DARK THEME OVERRIDES */ | |||
.darkangels-theme, | |||
.darkangels-theme body, | |||
.darkangels-theme #content, | |||
.darkangels-theme .mw-body { | |||
background: white !important; | |||
color: #333 !important; | |||
} | |||
/* Force green headers */ | |||
.darkangels-theme .army-rule-header { | |||
background-color: #006341 !important; | |||
filter: none !important; /* Remove any theme color filters */ | |||
} | |||
/* DARK ANGELS THEME - WHITE BACKGROUND VERSION */ | /* DARK ANGELS THEME - WHITE BACKGROUND VERSION */ | ||
Revision as of 19:55, 19 June 2025
/* __TEMPLATESTYLES__ */
/* DARK THEME OVERRIDES */
.darkangels-theme,
.darkangels-theme body,
.darkangels-theme #content,
.darkangels-theme .mw-body {
background: white !important;
color: #333 !important;
}
/* Force green headers */
.darkangels-theme .army-rule-header {
background-color: #006341 !important;
filter: none !important; /* Remove any theme color filters */
}
/* DARK ANGELS THEME - WHITE BACKGROUND VERSION */
/* Force white background for entire page */
.darkangels-theme,
.darkangels-theme body {
background: white !important;
color: #333;
}
/* Base Text */
.darkangels-theme #content {
font-family: 'Roboto', 'Segoe UI', sans-serif;
line-height: 1.5;
}
/* Headers - Now with better contrast */
.darkangels-theme h1,
.darkangels-theme h2,
.darkangels-theme h3 {
color: #006341 !important; /* Dark Angels green */
border-bottom: 1px solid #e0e0e0;
padding-bottom: 3px;
font-weight: 700;
}
/* Army Rules Boxes */
.darkangels-theme .army-rules-container {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0;
}
.darkangels-theme .army-rule-box {
border: 1px solid #d0d0d0;
border-radius: 4px;
width: 100%;
max-width: 500px;
background: white;
box-shadow: none !important; /* Remove any dark shadows */
}
/* Rule Headers - Now properly green */
.darkangels-theme .army-rule-header {
background-color: #006341 !important; /* Forces green override */
color: white !important;
padding: 8px 12px;
font-weight: 700;
font-size: 16px;
}
/* Content Areas */
.darkangels-theme .army-rule-content {
padding: 12px;
font-size: 14px;
background: white !important;
color: #333 !important;
}
/* Keywords */
.darkangels-theme .keyword {
font-weight: 700;
text-transform: uppercase;
color: #555 !important;
}
/* Tables - Full white treatment */
.darkangels-theme .wikitable {
font-size: 13px;
border-collapse: collapse;
width: 100%;
margin: 15px 0;
background: white !important;
}
.darkangels-theme .wikitable th {
background-color: #006341 !important; /* Green headers */
color: white !important;
padding: 6px 10px;
}
.darkangels-theme .wikitable td {
padding: 6px 10px;
border-bottom: 1px solid #e0e0e0;
background: white !important;
}
.darkangels-theme .wikitable tr:nth-child(even) {
background-color: #f8f8f8 !important;
}