MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 293: | Line 293: | ||
color: #ffd37a; | color: #ffd37a; | ||
text-decoration: none; | text-decoration: none; | ||
} | |||
/* RACE DETAIL PAGES */ | |||
/* ----------------- */ | |||
.wizlords-race-page { | |||
max-width: 100%; | |||
} | |||
.wizlords-race-intro { | |||
display: flex; | |||
align-items: center; | |||
gap: 28px; | |||
margin: 18px 0 24px; | |||
} | |||
.wizlords-race-intro-icon { | |||
flex: 0 0 auto; | |||
} | |||
.wizlords-race-intro-icon img { | |||
display: block; | |||
width: 100px; | |||
height: 100px; | |||
object-fit: contain; | |||
border: 0; | |||
background: transparent; | |||
} | |||
.wizlords-race-quote { | |||
position: relative; | |||
margin: 0; | |||
padding: 0 34px; | |||
color: var(--wiz-text, #d2d2d2); | |||
font-size: 16px; | |||
font-style: italic; | |||
line-height: 1.6; | |||
} | |||
.wizlords-race-quote::before, | |||
.wizlords-race-quote::after { | |||
position: absolute; | |||
color: #555; | |||
font-size: 42px; | |||
line-height: 1; | |||
} | |||
.wizlords-race-quote::before { | |||
content: "\201C"; | |||
left: 0; | |||
top: -6px; | |||
} | |||
.wizlords-race-quote::after { | |||
content: "\201D"; | |||
right: 0; | |||
bottom: -18px; | |||
} | |||
.wizlords-race-quote-source { | |||
margin-top: 8px; | |||
text-align: right; | |||
font-size: 12px; | |||
font-style: normal; | |||
font-weight: bold; | |||
} | |||
.wizlords-culture-grid { | |||
display: grid; | |||
grid-template-columns: repeat(3, minmax(0, 1fr)); | |||
gap: 14px; | |||
margin: 18px 0 24px; | |||
} | |||
.wizlords-culture-card { | |||
display: flex; | |||
flex-direction: column; | |||
min-height: 100%; | |||
border: 1px solid var(--wiz-race-table-border-colour, #4d4d4d); | |||
background: #171717; | |||
} | |||
.wizlords-culture-card-header { | |||
padding: 16px 12px 12px; | |||
text-align: center; | |||
border-bottom: 1px solid var(--wiz-race-table-border-colour, #4d4d4d); | |||
} | |||
.wizlords-culture-card-header img { | |||
display: block; | |||
width: 70px; | |||
height: 70px; | |||
margin: 0 auto 8px; | |||
object-fit: contain; | |||
border: 0; | |||
background: transparent; | |||
} | |||
.wizlords-culture-card-title, | |||
.wizlords-culture-card-title a { | |||
color: var(--wiz-link, #ff942d); | |||
font-size: 16px; | |||
font-weight: bold; | |||
line-height: 1.25; | |||
text-decoration: none; | |||
} | |||
.wizlords-culture-card-body { | |||
flex: 1 1 auto; | |||
padding: 12px; | |||
background: #1f1e1e; | |||
} | |||
.wizlords-culture-card-body p { | |||
margin: 0 0 12px; | |||
} | |||
.wizlords-culture-classes { | |||
margin-top: 12px; | |||
font-weight: bold; | |||
} | |||
.wizlords-culture-card-body ul { | |||
margin: 4px 0 0; | |||
padding-left: 18px; | |||
list-style: disc outside; | |||
} | |||
.wizlords-culture-card-body li { | |||
display: list-item; | |||
margin: 0 0 3px; | |||
} | |||
.wizlords-culture-list { | |||
margin: 18px 0 24px; | |||
} | |||
.wizlords-culture-row { | |||
display: grid; | |||
grid-template-columns: 76px minmax(0, 1fr); | |||
gap: 18px; | |||
padding: 18px 0; | |||
border-bottom: 1px solid var(--wiz-race-table-border-colour, #4d4d4d); | |||
} | |||
.wizlords-culture-row-icon img { | |||
display: block; | |||
width: 70px; | |||
height: 70px; | |||
object-fit: contain; | |||
border: 0; | |||
background: transparent; | |||
} | |||
.wizlords-culture-row-title, | |||
.wizlords-culture-row-title a { | |||
color: var(--wiz-heading, #e7e1d4); | |||
font-size: 18px; | |||
font-weight: bold; | |||
line-height: 1.3; | |||
text-decoration: none; | |||
} | |||
.wizlords-culture-row-description { | |||
margin: 8px 0 10px; | |||
} | |||
.wizlords-culture-row-classes { | |||
color: var(--wiz-text, #d2d2d2); | |||
font-size: 13px; | |||
} | } | ||