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: | ||
/* === Wahapedia-Style CSS === */ | |||
/* Main content styling */ | |||
#content { | |||
font-family: 'Roboto', sans-serif; | |||
line-height: 1.6; | |||
color: #333; | |||
} | |||
/* Headers */ | |||
.mw-headline, h1, h2, h3 { | |||
font-weight: 700; | |||
letter-spacing: 0.5px; | |||
} | |||
/* Army Rules Section */ | |||
.army-rules-container { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 15px; | |||
margin: 15px 0; | |||
} | |||
.army-rule-box { | |||
border: 1px solid #ddd; | |||
border: 1px solid # | border-radius: 5px; | ||
border-radius: | width: 100%; | ||
max-width: 500px; | max-width: 500px; | ||
overflow: hidden; | |||
box-shadow: 0 2px 5px rgba(0,0,0,0.1); | |||
} | } | ||
.army-rule-header { | |||
color: white; | color: white; | ||
padding: 8px 12px; | padding: 8px 12px; | ||
font-weight: bold; | font-weight: bold; | ||
font-size: | font-size: 1.1em; | ||
background-color: #006341; /* Dark Angels green */ | |||
} | } | ||
.army-rule-content { | |||
padding: 12px; | padding: 12px; | ||
background: white; | |||
line-height: 1.5; | |||
font-size: 14px; | font-size: 14px; | ||
} | } | ||
/* Keyword styling */ | /* Keyword styling */ | ||
. | .keyword { | ||
font-weight: | font-weight: 700; | ||
text-transform: uppercase; | |||
color: #555; | |||
} | |||
/* Tables */ | |||
.wikitable { | |||
font-size: 13px; | |||
width: 100%; | |||
} | |||
.wikitable th { | |||
font-weight: 600; | |||
background: #f5f5f5; | |||
} | } |
Revision as of 19:35, 19 June 2025
/* === Wahapedia-Style CSS === */ /* Main content styling */ #content { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; } /* Headers */ .mw-headline, h1, h2, h3 { font-weight: 700; letter-spacing: 0.5px; } /* Army Rules Section */ .army-rules-container { display: flex; flex-wrap: wrap; gap: 15px; margin: 15px 0; } .army-rule-box { border: 1px solid #ddd; border-radius: 5px; width: 100%; max-width: 500px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .army-rule-header { color: white; padding: 8px 12px; font-weight: bold; font-size: 1.1em; background-color: #006341; /* Dark Angels green */ } .army-rule-content { padding: 12px; background: white; line-height: 1.5; font-size: 14px; } /* Keyword styling */ .keyword { font-weight: 700; text-transform: uppercase; color: #555; } /* Tables */ .wikitable { font-size: 13px; width: 100%; } .wikitable th { font-weight: 600; background: #f5f5f5; }