MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→CSS placed here will be applied to all skins: /* ═══════════════════════════════════════════════════════════ SKYWARD AIR VIRTUAL — DOC CENTER Paste into: MediaWiki:Common.css ═══════════════════════════════════════════════════════..." |
No edit summary |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@300;400;500&family=IBM+Plex+Mono:wght@400;500&display=swap'); | |||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* ═══════════════════════════════════════════════════════════ | /* ═══════════════════════════════════════════════════════════ | ||
| Line 464: | Line 466: | ||
.sav-hero { padding: 2rem 1.25rem; } | .sav-hero { padding: 2rem 1.25rem; } | ||
.sav-stats { gap: 1.25rem; } | .sav-stats { gap: 1.25rem; } | ||
} | |||
/* Hide sidebar on Main Page only */ | |||
.page-Main_Page #mw-panel, | |||
.page-Main_Page .mw-sidebar { | |||
display: none; | |||
} | |||
.page-Main_Page #content { | |||
margin-left: 0 !important; | |||
} | |||
/* ═══════════════════════════════════════════════════════════ | |||
SKYWARD AIR VIRTUAL — GETTING STARTED PAGE ADDITIONS | |||
Append to: MediaWiki:Common.css (add below existing styles) | |||
═══════════════════════════════════════════════════════════ */ | |||
/* ── PAGE NAV BAR ── */ | |||
.sav-page-nav { | |||
display: flex; | |||
align-items: center; | |||
gap: 0.5rem; | |||
flex-wrap: wrap; | |||
padding: 0.75rem 2rem; | |||
background: #111418; | |||
border-bottom: 1px solid rgba(255,255,255,0.07); | |||
margin-bottom: 2rem; | |||
} | |||
.sav-page-nav-label { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.6rem; | |||
color: #8A9BB0; | |||
letter-spacing: 0.15em; | |||
text-transform: uppercase; | |||
margin-right: 0.5rem; | |||
} | |||
.sav-page-nav-link { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.65rem; | |||
color: #8A9BB0 !important; | |||
text-decoration: none; | |||
padding: 0.2rem 0.65rem; | |||
border: 1px solid rgba(255,255,255,0.07); | |||
border-radius: 3px; | |||
transition: all 0.15s; | |||
letter-spacing: 0.05em; | |||
} | |||
.sav-page-nav-link:hover { | |||
color: #F39C12 !important; | |||
border-color: rgba(230,126,34,0.3); | |||
background: rgba(230,126,34,0.06); | |||
} | |||
/* ── CONTENT WRAPPER ── */ | |||
.sav-content { | |||
padding: 0; | |||
} | |||
/* ── SECTION BLOCKS ── */ | |||
.sav-section { | |||
margin: 0 2rem 1.5rem; | |||
background: #111418; | |||
border: 1px solid rgba(255,255,255,0.07); | |||
border-radius: 6px; | |||
overflow: hidden; | |||
transition: border-color 0.2s; | |||
} | |||
.sav-section:hover { | |||
border-color: rgba(230,126,34,0.2); | |||
} | |||
.sav-section-header { | |||
display: flex; | |||
align-items: center; | |||
gap: 1.25rem; | |||
padding: 1.25rem 1.5rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.06); | |||
background: rgba(255,255,255,0.02); | |||
} | |||
.sav-step-num { | |||
font-family: 'Bebas Neue', 'Impact', sans-serif; | |||
font-size: 2.5rem; | |||
line-height: 1; | |||
color: rgba(230,126,34,0.25); | |||
letter-spacing: 0.05em; | |||
min-width: 52px; | |||
} | |||
.sav-section-title { | |||
font-family: 'Bebas Neue', 'Impact', sans-serif; | |||
font-size: 1.6rem; | |||
letter-spacing: 0.06em; | |||
color: #F0F4F8; | |||
line-height: 1; | |||
} | |||
.sav-section-sub { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.62rem; | |||
color: #8A9BB0; | |||
letter-spacing: 0.12em; | |||
text-transform: uppercase; | |||
margin-top: 0.2rem; | |||
} | |||
.sav-section-body { | |||
padding: 1.5rem; | |||
} | |||
.sav-p { | |||
font-size: 0.88rem; | |||
color: #B0BEC5; | |||
line-height: 1.75; | |||
margin-bottom: 1.25rem; | |||
} | |||
/* ── STEP LIST ── */ | |||
.sav-steps-list { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 0; | |||
margin-bottom: 1.25rem; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-radius: 5px; | |||
overflow: hidden; | |||
} | |||
.sav-step-item { | |||
display: flex; | |||
align-items: flex-start; | |||
gap: 1rem; | |||
padding: 1rem 1.25rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.05); | |||
transition: background 0.15s; | |||
} | |||
.sav-step-item:last-child { border-bottom: none; } | |||
.sav-step-item:hover { background: rgba(230,126,34,0.04); } | |||
.sav-step-marker { | |||
flex-shrink: 0; | |||
width: 26px; | |||
height: 26px; | |||
border-radius: 50%; | |||
background: rgba(230,126,34,0.15); | |||
border: 1px solid rgba(230,126,34,0.35); | |||
color: #F39C12; | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.7rem; | |||
font-weight: 500; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
margin-top: 0.1rem; | |||
} | |||
.sav-step-title { | |||
font-size: 0.85rem; | |||
font-weight: 500; | |||
color: #F0F4F8; | |||
margin-bottom: 0.3rem; | |||
} | |||
.sav-step-desc { | |||
font-size: 0.78rem; | |||
color: #8A9BB0; | |||
line-height: 1.65; | |||
} | |||
.sav-step-desc a { color: #E67E22 !important; } | |||
.sav-step-desc a:hover { color: #F39C12 !important; } | |||
/* ── INFOBOXES ── */ | |||
.sav-infobox { | |||
display: flex; | |||
align-items: flex-start; | |||
gap: 0.85rem; | |||
padding: 0.9rem 1.1rem; | |||
border-radius: 5px; | |||
font-size: 0.8rem; | |||
line-height: 1.65; | |||
margin-top: 1rem; | |||
} | |||
.sav-infobox-icon { | |||
font-size: 1rem; | |||
flex-shrink: 0; | |||
margin-top: 0.05rem; | |||
} | |||
.sav-infobox--amber { | |||
background: rgba(230,126,34,0.08); | |||
border: 1px solid rgba(230,126,34,0.25); | |||
color: #B0BEC5; | |||
} | |||
.sav-infobox--amber strong { color: #F39C12; } | |||
.sav-infobox--steel { | |||
background: rgba(138,155,176,0.06); | |||
border: 1px solid rgba(138,155,176,0.18); | |||
color: #B0BEC5; | |||
} | |||
.sav-infobox--steel strong { color: #F0F4F8; } | |||
.sav-infobox--red { | |||
background: rgba(192,57,43,0.1); | |||
border: 1px solid rgba(192,57,43,0.3); | |||
color: #B0BEC5; | |||
} | |||
.sav-infobox--red strong { color: #E74C3C; } | |||
/* ── SIMULATOR CARDS ── */ | |||
.sav-sim-grid { | |||
display: grid; | |||
grid-template-columns: repeat(4, 1fr); | |||
gap: 1rem; | |||
margin-bottom: 1.25rem; | |||
} | |||
.sav-sim-card { | |||
background: #181C22; | |||
border: 1px solid rgba(255,255,255,0.07); | |||
border-radius: 5px; | |||
padding: 1.1rem 0.85rem; | |||
text-align: center; | |||
transition: border-color 0.15s; | |||
} | |||
.sav-sim-card:hover { border-color: rgba(230,126,34,0.25); } | |||
.sav-sim-icon { font-size: 1.75rem; margin-bottom: 0.5rem; } | |||
.sav-sim-name { | |||
font-size: 0.8rem; | |||
font-weight: 500; | |||
color: #F0F4F8; | |||
margin-bottom: 0.2rem; | |||
line-height: 1.3; | |||
} | |||
.sav-sim-short { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.6rem; | |||
color: #8A9BB0; | |||
letter-spacing: 0.05em; | |||
margin-bottom: 0.6rem; | |||
} | |||
.sav-sim-status { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.58rem; | |||
letter-spacing: 0.12em; | |||
padding: 0.15rem 0.5rem; | |||
border-radius: 2px; | |||
text-transform: uppercase; | |||
display: inline-block; | |||
} | |||
.sav-sim-status--supported { | |||
background: rgba(39,174,96,0.15); | |||
border: 1px solid rgba(39,174,96,0.3); | |||
color: #2ECC71; | |||
} | |||
.sav-sim-status--optional { | |||
background: rgba(230,126,34,0.12); | |||
border: 1px solid rgba(230,126,34,0.25); | |||
color: #F39C12; | |||
} | |||
/* ── RANK TABLE ── */ | |||
.sav-rank-table-wrap { | |||
margin-bottom: 1.25rem; | |||
overflow-x: auto; | |||
border-radius: 5px; | |||
border: 1px solid rgba(255,255,255,0.07); | |||
} | |||
.sav-rank-table { | |||
width: 100%; | |||
border-collapse: collapse; | |||
} | |||
.sav-rank-table th { | |||
background: #181C22; | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.62rem; | |||
letter-spacing: 0.12em; | |||
text-transform: uppercase; | |||
color: #8A9BB0; | |||
padding: 0.75rem 1rem; | |||
text-align: left; | |||
border-bottom: 1px solid rgba(255,255,255,0.08); | |||
font-weight: 500; | |||
} | |||
.sav-rank-table td { | |||
padding: 0.7rem 1rem; | |||
font-size: 0.8rem; | |||
color: #B0BEC5; | |||
border-bottom: 1px solid rgba(255,255,255,0.04); | |||
background: transparent !important; | |||
border: none; | |||
border-bottom: 1px solid rgba(255,255,255,0.04); | |||
} | |||
.sav-rank-table tr:last-child td { border-bottom: none; } | |||
.sav-rank-table tr:hover td { background: rgba(255,255,255,0.02) !important; } | |||
.sav-rank-badge { | |||
display: inline-block; | |||
font-size: 0.75rem; | |||
font-weight: 500; | |||
padding: 0.18rem 0.6rem; | |||
border-radius: 3px; | |||
white-space: nowrap; | |||
} | |||
.sav-rank--1 { background: rgba(138,155,176,0.12); color: #B0BEC5; border: 1px solid rgba(138,155,176,0.2); } | |||
.sav-rank--2 { background: rgba(138,155,176,0.14); color: #C5D0DA; border: 1px solid rgba(138,155,176,0.25); } | |||
.sav-rank--3 { background: rgba(230,126,34,0.1); color: #E67E22; border: 1px solid rgba(230,126,34,0.2); } | |||
.sav-rank--4 { background: rgba(230,126,34,0.13); color: #F39C12; border: 1px solid rgba(230,126,34,0.28); } | |||
.sav-rank--5 { background: rgba(230,126,34,0.16); color: #F5A623; border: 1px solid rgba(230,126,34,0.32); } | |||
.sav-rank--6 { background: rgba(192,57,43,0.12); color: #E74C3C; border: 1px solid rgba(192,57,43,0.25); } | |||
.sav-rank--7 { background: rgba(192,57,43,0.18); color: #E74C3C; border: 1px solid rgba(192,57,43,0.35); } | |||
.sav-rank--8 { background: rgba(192,57,43,0.22); color: #FF6B6B; border: 1px solid rgba(192,57,43,0.4); } | |||
/* ── RULES GRID ── */ | |||
.sav-rules-grid { | |||
display: grid; | |||
grid-template-columns: 1fr 1fr; | |||
gap: 0.75rem; | |||
margin-bottom: 1.25rem; | |||
} | |||
.sav-rule-item { | |||
display: flex; | |||
align-items: flex-start; | |||
gap: 0.75rem; | |||
padding: 0.85rem 1rem; | |||
background: #181C22; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-radius: 5px; | |||
font-size: 0.8rem; | |||
color: #B0BEC5; | |||
line-height: 1.6; | |||
} | |||
.sav-rule-icon { | |||
flex-shrink: 0; | |||
width: 22px; | |||
height: 22px; | |||
border-radius: 50%; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
font-size: 0.75rem; | |||
font-weight: 700; | |||
margin-top: 0.05rem; | |||
} | |||
.sav-rule--green { background: rgba(39,174,96,0.15); color: #2ECC71; border: 1px solid rgba(39,174,96,0.3); } | |||
.sav-rule--red { background: rgba(192,57,43,0.15); color: #E74C3C; border: 1px solid rgba(192,57,43,0.3); } | |||
.sav-rule-text strong { color: #F0F4F8; } | |||
/* ── RESPONSIVE ── */ | |||
@media screen and (max-width: 900px) { | |||
.sav-sim-grid { grid-template-columns: repeat(2, 1fr); } | |||
.sav-rules-grid { grid-template-columns: 1fr; } | |||
} | |||
@media screen and (max-width: 600px) { | |||
.sav-section { margin: 0 1rem 1.25rem; } | |||
.sav-sim-grid { grid-template-columns: 1fr 1fr; } | |||
.sav-page-nav { padding: 0.75rem 1rem; } | |||
} | |||
/* ═══════════════════════════════════════════════════════════ | |||
SKYWARD AIR VIRTUAL — FLEET PAGE ADDITIONS | |||
Append to: MediaWiki:Common.css (add below existing styles) | |||
═══════════════════════════════════════════════════════════ */ | |||
/* ── FLEET OVERVIEW GRID ── */ | |||
.sav-fleet-grid { | |||
display: grid; | |||
grid-template-columns: repeat(3, 1fr); | |||
gap: 1.25rem; | |||
padding: 0 2rem; | |||
margin-bottom: 1.5rem; | |||
} | |||
.sav-fleet-card { | |||
background: #111418; | |||
border: 1px solid rgba(255,255,255,0.07); | |||
border-radius: 6px; | |||
overflow: hidden; | |||
transition: border-color 0.2s, transform 0.2s; | |||
} | |||
.sav-fleet-card:hover { | |||
border-color: rgba(230,126,34,0.3); | |||
transform: translateY(-2px); | |||
} | |||
.sav-fleet-card-img { | |||
background: #0A0C0F; | |||
border-bottom: 1px solid rgba(255,255,255,0.06); | |||
min-height: 180px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
overflow: hidden; | |||
} | |||
.sav-fleet-card-img img { | |||
width: 100%; | |||
height: 100%; | |||
object-fit: cover; | |||
display: block; | |||
} | |||
.sav-fleet-card-img--placeholder { | |||
background: #0E1116; | |||
} | |||
.sav-fleet-placeholder { | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
gap: 0.5rem; | |||
padding: 2.5rem; | |||
opacity: 0.4; | |||
} | |||
.sav-fleet-placeholder-icon { font-size: 2.5rem; } | |||
.sav-fleet-placeholder-text { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.65rem; | |||
color: #8A9BB0; | |||
letter-spacing: 0.1em; | |||
text-transform: uppercase; | |||
} | |||
.sav-fleet-card-body { padding: 1.25rem; } | |||
.sav-fleet-type-tag { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.6rem; | |||
color: #E67E22; | |||
letter-spacing: 0.15em; | |||
text-transform: uppercase; | |||
margin-bottom: 0.4rem; | |||
} | |||
.sav-fleet-name { | |||
font-family: 'Bebas Neue', 'Impact', sans-serif; | |||
font-size: 1.8rem; | |||
letter-spacing: 0.05em; | |||
color: #F0F4F8; | |||
line-height: 1; | |||
margin-bottom: 0.5rem; | |||
} | |||
.sav-fleet-specs-mini { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.65rem; | |||
color: #8A9BB0; | |||
letter-spacing: 0.04em; | |||
margin-bottom: 0.75rem; | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 0.3rem; | |||
align-items: center; | |||
} | |||
.sav-sep { color: rgba(255,255,255,0.2); } | |||
.sav-fleet-desc { | |||
font-size: 0.78rem; | |||
color: #8A9BB0; | |||
line-height: 1.65; | |||
margin-bottom: 1rem; | |||
} | |||
.sav-fleet-card-footer { | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
padding-top: 0.75rem; | |||
border-top: 1px solid rgba(255,255,255,0.06); | |||
font-size: 0.78rem; | |||
} | |||
.sav-fleet-card-footer a { | |||
color: #E67E22 !important; | |||
text-decoration: none; | |||
font-weight: 500; | |||
transition: color 0.15s; | |||
} | |||
.sav-fleet-card-footer a:hover { color: #F39C12 !important; } | |||
/* ── SPECS GRID ── */ | |||
.sav-specs-grid { | |||
display: grid; | |||
grid-template-columns: repeat(2, 1fr); | |||
gap: 1rem; | |||
} | |||
.sav-spec-group { | |||
background: #181C22; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-radius: 5px; | |||
overflow: hidden; | |||
} | |||
.sav-spec-group-title { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.6rem; | |||
letter-spacing: 0.18em; | |||
text-transform: uppercase; | |||
color: #E67E22; | |||
padding: 0.6rem 1rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.06); | |||
background: rgba(230,126,34,0.05); | |||
} | |||
.sav-spec-row { | |||
display: flex; | |||
justify-content: space-between; | |||
align-items: center; | |||
padding: 0.5rem 1rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.04); | |||
transition: background 0.12s; | |||
} | |||
.sav-spec-row:last-child { border-bottom: none; } | |||
.sav-spec-row:hover { background: rgba(255,255,255,0.02); } | |||
.sav-spec-label { | |||
font-size: 0.75rem; | |||
color: #8A9BB0; | |||
} | |||
.sav-spec-val { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.72rem; | |||
color: #F0F4F8; | |||
text-align: right; | |||
} | |||
/* ── LIVERY SECTION ── */ | |||
.sav-livery-body { | |||
text-align: center; | |||
} | |||
.sav-livery-body img { | |||
border-radius: 4px; | |||
max-width: 100%; | |||
} | |||
.sav-livery-caption { | |||
font-size: 0.75rem; | |||
color: #8A9BB0; | |||
margin-top: 0.85rem; | |||
font-style: italic; | |||
line-height: 1.6; | |||
} | |||
/* ── ADDON LIST ── */ | |||
.sav-addon-list { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 0; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-radius: 5px; | |||
overflow: hidden; | |||
margin-bottom: 1.25rem; | |||
} | |||
.sav-addon-item { | |||
padding: 1.1rem 1.25rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.05); | |||
transition: background 0.15s; | |||
} | |||
.sav-addon-item:last-child { border-bottom: none; } | |||
.sav-addon-item:hover { background: rgba(255,255,255,0.015); } | |||
.sav-addon--top { | |||
background: rgba(230,126,34,0.04); | |||
border-left: 3px solid rgba(230,126,34,0.4); | |||
} | |||
.sav-addon-header { | |||
display: flex; | |||
align-items: center; | |||
gap: 0.75rem; | |||
margin-bottom: 0.5rem; | |||
} | |||
.sav-addon-name { | |||
font-size: 0.88rem; | |||
font-weight: 500; | |||
color: #F0F4F8; | |||
} | |||
.sav-addon-badge { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.58rem; | |||
letter-spacing: 0.1em; | |||
padding: 0.15rem 0.5rem; | |||
border-radius: 2px; | |||
text-transform: uppercase; | |||
flex-shrink: 0; | |||
} | |||
.sav-addon-badge--recommended { background: rgba(230,126,34,0.2); color: #F39C12; border: 1px solid rgba(230,126,34,0.35); } | |||
.sav-addon-badge--free { background: rgba(39,174,96,0.15); color: #2ECC71; border: 1px solid rgba(39,174,96,0.3); } | |||
.sav-addon-badge--livery { background: rgba(138,155,176,0.12); color: #B0BEC5; border: 1px solid rgba(138,155,176,0.2); } | |||
.sav-addon-desc { | |||
font-size: 0.78rem; | |||
color: #8A9BB0; | |||
line-height: 1.65; | |||
margin-bottom: 0.6rem; | |||
} | |||
.sav-addon-links { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 0.5rem; | |||
} | |||
.sav-addon-link a, | |||
.sav-addon-link { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.65rem; | |||
color: #E67E22 !important; | |||
text-decoration: none; | |||
padding: 0.18rem 0.6rem; | |||
border: 1px solid rgba(230,126,34,0.25); | |||
border-radius: 3px; | |||
background: rgba(230,126,34,0.06); | |||
letter-spacing: 0.06em; | |||
transition: background 0.15s; | |||
display: inline-block; | |||
} | |||
.sav-addon-link a:hover, | |||
.sav-addon-link:hover { | |||
background: rgba(230,126,34,0.15); | |||
color: #F39C12 !important; | |||
} | |||
/* ── STEP NUM IMAGE VARIANT ── */ | |||
.sav-step-num--img { | |||
font-size: 1.5rem; | |||
min-width: 52px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
} | |||
/* ── RESPONSIVE ── */ | |||
@media screen and (max-width: 900px) { | |||
.sav-fleet-grid { grid-template-columns: 1fr 1fr; } | |||
.sav-specs-grid { grid-template-columns: 1fr; } | |||
} | |||
@media screen and (max-width: 600px) { | |||
.sav-fleet-grid { grid-template-columns: 1fr; padding: 0 1rem; } | |||
} | |||
/* ═══════════════════════════════════════════════════════════ | |||
SKYWARD AIR VIRTUAL — SOP PAGE ADDITIONS | |||
Append to: MediaWiki:Common.css (add below existing styles) | |||
═══════════════════════════════════════════════════════════ */ | |||
/* ── SOP BLOCK ── */ | |||
.sav-sop-block { | |||
margin-bottom: 1.5rem; | |||
} | |||
.sav-sop-block:last-child { margin-bottom: 0; } | |||
.sav-sop-block-title { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.65rem; | |||
letter-spacing: 0.18em; | |||
text-transform: uppercase; | |||
color: #E67E22; | |||
margin-bottom: 0.75rem; | |||
padding-bottom: 0.4rem; | |||
border-bottom: 1px solid rgba(230,126,34,0.2); | |||
} | |||
/* ── CHECKLIST ── */ | |||
.sav-checklist { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 0; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-radius: 5px; | |||
overflow: hidden; | |||
} | |||
.sav-check-item { | |||
display: flex; | |||
align-items: flex-start; | |||
gap: 0.85rem; | |||
padding: 0.6rem 1rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.04); | |||
font-size: 0.8rem; | |||
color: #B0BEC5; | |||
line-height: 1.5; | |||
transition: background 0.12s; | |||
} | |||
.sav-check-item:last-child { border-bottom: none; } | |||
.sav-check-item:hover { background: rgba(255,255,255,0.02); } | |||
.sav-check-box { | |||
flex-shrink: 0; | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.75rem; | |||
color: rgba(230,126,34,0.5); | |||
margin-top: 0.05rem; | |||
width: 16px; | |||
} | |||
/* ── PHRASEOLOGY BOXES ── */ | |||
.sav-phrase-section-label { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.6rem; | |||
letter-spacing: 0.15em; | |||
text-transform: uppercase; | |||
color: #8A9BB0; | |||
margin: 1rem 0 0.4rem; | |||
} | |||
.sav-phrase-section-label:first-child { margin-top: 0; } | |||
.sav-phrasebox { | |||
background: #0E1116; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-left: 3px solid rgba(230,126,34,0.4); | |||
border-radius: 0 4px 4px 0; | |||
padding: 0.85rem 1rem; | |||
display: flex; | |||
flex-direction: column; | |||
gap: 0.5rem; | |||
margin-bottom: 0.25rem; | |||
} | |||
.sav-phrasebox--emergency { | |||
border-left-color: rgba(192,57,43,0.7); | |||
background: rgba(192,57,43,0.05); | |||
} | |||
.sav-phrase-pilot { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.75rem; | |||
color: #F0F4F8; | |||
line-height: 1.6; | |||
letter-spacing: 0.02em; | |||
} | |||
.sav-phrase-pilot::before { | |||
content: '▶ '; | |||
color: #E67E22; | |||
font-size: 0.65rem; | |||
} | |||
.sav-phrase-atc { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.75rem; | |||
color: #8A9BB0; | |||
line-height: 1.6; | |||
letter-spacing: 0.02em; | |||
} | |||
.sav-phrase-atc::before { | |||
content: '◀ '; | |||
color: #8A9BB0; | |||
font-size: 0.65rem; | |||
} | |||
.sav-phrasebox--emergency .sav-phrase-pilot::before { | |||
content: '⚠ '; | |||
color: #E74C3C; | |||
} | |||
/* ── DATA TABLES ── */ | |||
.sav-table-wrap { | |||
overflow-x: auto; | |||
border-radius: 5px; | |||
border: 1px solid rgba(255,255,255,0.07); | |||
margin-bottom: 1rem; | |||
} | |||
.sav-data-table { | |||
width: 100%; | |||
border-collapse: collapse; | |||
} | |||
.sav-data-table th { | |||
background: #181C22; | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.62rem; | |||
letter-spacing: 0.12em; | |||
text-transform: uppercase; | |||
color: #8A9BB0; | |||
padding: 0.65rem 1rem; | |||
text-align: left; | |||
border-bottom: 1px solid rgba(255,255,255,0.08); | |||
font-weight: 500; | |||
white-space: nowrap; | |||
} | |||
.sav-data-table td { | |||
padding: 0.6rem 1rem; | |||
font-size: 0.78rem; | |||
color: #B0BEC5; | |||
border-bottom: 1px solid rgba(255,255,255,0.04); | |||
background: transparent !important; | |||
border: none; | |||
border-bottom: 1px solid rgba(255,255,255,0.04); | |||
vertical-align: top; | |||
} | |||
.sav-data-table tr:last-child td { border-bottom: none; } | |||
.sav-data-table tr:hover td { background: rgba(255,255,255,0.02) !important; } | |||
.sav-data-table td:first-child { color: #F0F4F8; font-weight: 400; } | |||
/* ── RESPONSIVE ── */ | |||
@media screen and (max-width: 700px) { | |||
.sav-phrasebox { padding: 0.75rem; } | |||
.sav-phrase-pilot, | |||
.sav-phrase-atc { font-size: 0.68rem; } | |||
} | |||
/* ═══════════════════════════════════════════════════════════ | |||
SKYWARD AIR VIRTUAL — HERITAGE PAGE ADDITIONS | |||
Append to: MediaWiki:Common.css | |||
═══════════════════════════════════════════════════════════ */ | |||
/* ── PULL QUOTE ── */ | |||
.sav-heritage-pull { | |||
font-family: 'Bebas Neue', 'Impact', sans-serif; | |||
font-size: 1.6rem; | |||
letter-spacing: 0.06em; | |||
color: rgba(243,156,18,0.7); | |||
border-left: 3px solid rgba(230,126,34,0.4); | |||
padding: 0.5rem 1.25rem; | |||
margin: 0 0 1.5rem; | |||
line-height: 1.3; | |||
} | |||
/* ── LIVERY ERA GRID ── */ | |||
.sav-livery-era-grid { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 1.5rem; | |||
} | |||
.sav-livery-era { | |||
background: #181C22; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-radius: 6px; | |||
overflow: hidden; | |||
display: grid; | |||
grid-template-columns: 380px 1fr; | |||
grid-template-rows: auto 1fr; | |||
} | |||
.sav-livery-era-header { | |||
grid-column: 1 / 3; | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
padding: 0.75rem 1.25rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.06); | |||
background: rgba(255,255,255,0.02); | |||
} | |||
.sav-livery-era-num { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.62rem; | |||
letter-spacing: 0.18em; | |||
text-transform: uppercase; | |||
color: #E67E22; | |||
} | |||
.sav-livery-era-dates { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.62rem; | |||
color: #8A9BB0; | |||
letter-spacing: 0.1em; | |||
} | |||
.sav-livery-era-img { | |||
border-right: 1px solid rgba(255,255,255,0.06); | |||
background: #0E1116; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 1rem; | |||
min-height: 200px; | |||
} | |||
.sav-livery-era-img img { | |||
max-width: 100%; | |||
max-height: 220px; | |||
object-fit: contain; | |||
} | |||
.sav-livery-era-body { | |||
padding: 1.25rem; | |||
} | |||
.sav-livery-era-name { | |||
font-family: 'Bebas Neue', 'Impact', sans-serif; | |||
font-size: 1.4rem; | |||
letter-spacing: 0.06em; | |||
color: #F0F4F8; | |||
margin-bottom: 0.6rem; | |||
} | |||
.sav-livery-era-desc { | |||
font-size: 0.8rem; | |||
color: #8A9BB0; | |||
line-height: 1.7; | |||
margin-bottom: 1rem; | |||
} | |||
.sav-livery-era-tags { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 0.4rem; | |||
} | |||
.sav-livery-tag { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.6rem; | |||
letter-spacing: 0.1em; | |||
padding: 0.18rem 0.55rem; | |||
border-radius: 2px; | |||
text-transform: uppercase; | |||
background: rgba(138,155,176,0.1); | |||
border: 1px solid rgba(138,155,176,0.18); | |||
color: #8A9BB0; | |||
} | |||
.sav-livery-tag--current { | |||
background: rgba(230,126,34,0.15); | |||
border-color: rgba(230,126,34,0.3); | |||
color: #F39C12; | |||
} | |||
/* ── NETWORK PHASES ── */ | |||
.sav-network-phases { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 0; | |||
border: 1px solid rgba(255,255,255,0.06); | |||
border-radius: 5px; | |||
overflow: hidden; | |||
} | |||
.sav-network-phase { | |||
padding: 1.1rem 1.25rem; | |||
border-bottom: 1px solid rgba(255,255,255,0.05); | |||
transition: background 0.15s; | |||
} | |||
.sav-network-phase:last-child { border-bottom: none; } | |||
.sav-network-phase:hover { background: rgba(255,255,255,0.015); } | |||
.sav-network-phase-header { | |||
display: flex; | |||
align-items: center; | |||
gap: 0.85rem; | |||
margin-bottom: 0.5rem; | |||
} | |||
.sav-network-phase-label { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.58rem; | |||
letter-spacing: 0.15em; | |||
text-transform: uppercase; | |||
background: rgba(230,126,34,0.15); | |||
color: #F39C12; | |||
border: 1px solid rgba(230,126,34,0.3); | |||
border-radius: 2px; | |||
padding: 0.15rem 0.5rem; | |||
flex-shrink: 0; | |||
} | |||
.sav-network-phase-title { | |||
font-size: 0.88rem; | |||
font-weight: 500; | |||
color: #F0F4F8; | |||
} | |||
.sav-network-phase-body { | |||
font-size: 0.8rem; | |||
color: #8A9BB0; | |||
line-height: 1.7; | |||
} | |||
/* ── TIMELINE ── */ | |||
.sav-timeline { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 0; | |||
position: relative; | |||
padding-left: 2rem; | |||
} | |||
.sav-timeline::before { | |||
content: ''; | |||
position: absolute; | |||
left: 7px; | |||
top: 8px; | |||
bottom: 8px; | |||
width: 1px; | |||
background: linear-gradient(180deg, rgba(230,126,34,0.5), rgba(192,57,43,0.3), rgba(230,126,34,0.1)); | |||
} | |||
.sav-timeline-item { | |||
display: flex; | |||
gap: 1.25rem; | |||
padding: 0 0 1.5rem 0; | |||
position: relative; | |||
} | |||
.sav-timeline-item:last-child { padding-bottom: 0; } | |||
.sav-timeline-marker { | |||
position: absolute; | |||
left: -2rem; | |||
top: 4px; | |||
width: 14px; | |||
height: 14px; | |||
border-radius: 50%; | |||
flex-shrink: 0; | |||
border: 2px solid #0A0C0F; | |||
} | |||
.sav-timeline-marker--gold { | |||
background: #E67E22; | |||
box-shadow: 0 0 8px rgba(230,126,34,0.5); | |||
} | |||
.sav-timeline-marker--red { | |||
background: #E74C3C; | |||
box-shadow: 0 0 10px rgba(231,76,60,0.6); | |||
width: 16px; | |||
height: 16px; | |||
top: 3px; | |||
left: -2.1rem; | |||
} | |||
.sav-timeline-content { flex: 1; } | |||
.sav-timeline-date { | |||
font-family: 'IBM Plex Mono', monospace; | |||
font-size: 0.62rem; | |||
color: #E67E22; | |||
letter-spacing: 0.12em; | |||
text-transform: uppercase; | |||
margin-bottom: 0.25rem; | |||
} | |||
.sav-timeline-title { | |||
font-size: 0.92rem; | |||
font-weight: 500; | |||
color: #F0F4F8; | |||
margin-bottom: 0.35rem; | |||
line-height: 1.3; | |||
} | |||
.sav-timeline-desc { | |||
font-size: 0.78rem; | |||
color: #8A9BB0; | |||
line-height: 1.65; | |||
} | |||
/* ── RESPONSIVE ── */ | |||
@media screen and (max-width: 800px) { | |||
.sav-livery-era { | |||
grid-template-columns: 1fr; | |||
} | |||
.sav-livery-era-header { grid-column: 1; } | |||
.sav-livery-era-img { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); } | |||
} | |||
.sav-stat a { | |||
color: #F39C12 !important; | |||
text-decoration: none; | |||
} | |||
.sav-stat a:hover { | |||
color: #E67E22 !important; | |||
} | } | ||
Latest revision as of 01:06, 6 March 2026
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@300;400;500&family=IBM+Plex+Mono:wght@400;500&display=swap');
/* CSS placed here will be applied to all skins */
/* ═══════════════════════════════════════════════════════════
SKYWARD AIR VIRTUAL — DOC CENTER
Paste into: MediaWiki:Common.css
═══════════════════════════════════════════════════════════ */
/* ── VARIABLES & BASE ── */
.sav-portal {
--red: #C0392B;
--red-bright: #E74C3C;
--amber: #E67E22;
--amber-bright: #F39C12;
--dark: #0A0C0F;
--dark-2: #111418;
--dark-3: #181C22;
--dark-4: #1E242C;
--steel: #8A9BB0;
--steel-light: #B0BEC5;
--white: #F0F4F8;
--border: rgba(255,255,255,0.07);
--border-amber: rgba(230,126,34,0.3);
font-family: 'IBM Plex Sans', 'Segoe UI', Arial, sans-serif;
font-weight: 300;
background: var(--dark);
color: var(--white);
max-width: 1200px;
margin: 0 auto;
padding: 0 0 3rem 0;
}
/* Override wiki page background when portal is present */
body:has(.sav-portal) #content,
body:has(.sav-portal) .mw-body {
background: #0A0C0F;
border: none;
padding: 0;
}
/* ── HERO ── */
.sav-hero {
background: linear-gradient(160deg, #111418 0%, #0A0C0F 100%);
border-bottom: 1px solid rgba(230,126,34,0.15);
padding: 3rem 2.5rem 2.5rem;
position: relative;
overflow: hidden;
}
.sav-hero::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 60%;
height: 200%;
background: radial-gradient(ellipse, rgba(192,57,43,0.08) 0%, transparent 60%);
pointer-events: none;
}
.sav-hero-eyebrow {
font-family: 'IBM Plex Mono', 'Courier New', monospace;
font-size: 0.65rem;
letter-spacing: 0.25em;
color: #E67E22;
text-transform: uppercase;
margin-bottom: 0.85rem;
}
.sav-hero-eyebrow::before {
content: '— ';
color: #E67E22;
}
.sav-hero-title {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: clamp(2.8rem, 6vw, 5.5rem);
line-height: 0.95;
letter-spacing: 0.04em;
color: #F0F4F8;
margin-bottom: 0.4rem;
}
.sav-accent {
color: #F39C12;
display: block;
}
.sav-hero-sub {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.68rem;
color: #8A9BB0;
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: 1rem;
}
.sav-hero-desc {
font-size: 0.88rem;
color: #B0BEC5;
line-height: 1.75;
max-width: 580px;
margin-bottom: 1.5rem;
}
.sav-stats {
display: flex;
gap: 2rem;
flex-wrap: wrap;
}
.sav-stat {
border-left: 2px solid rgba(230,126,34,0.35);
padding-left: 1rem;
}
.sav-stat-num {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 2.2rem;
color: #F39C12;
line-height: 1;
}
.sav-stat-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
color: #8A9BB0;
letter-spacing: 0.15em;
text-transform: uppercase;
}
/* ── NOTAM STRIP ── */
.sav-notam {
background: linear-gradient(90deg, rgba(192,57,43,0.12), rgba(230,126,34,0.06));
border-top: 1px solid rgba(192,57,43,0.3);
border-bottom: 1px solid rgba(192,57,43,0.12);
padding: 0.6rem 1.5rem;
display: flex;
align-items: center;
gap: 1rem;
overflow: hidden;
margin-bottom: 2rem;
}
.sav-notam-tag {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.15em;
background: #C0392B;
color: #fff;
padding: 0.2rem 0.55rem;
border-radius: 2px;
flex-shrink: 0;
text-transform: uppercase;
}
.sav-notam-text {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.7rem;
color: #B0BEC5;
letter-spacing: 0.04em;
white-space: nowrap;
}
/* ── SECTION CARDS GRID ── */
.sav-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.1rem;
padding: 0 2rem;
margin-bottom: 1.1rem;
}
/* ── CARD BASE ── */
.sav-card {
background: #111418;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 6px;
padding: 1.4rem;
position: relative;
transition: border-color 0.2s;
}
.sav-card:hover {
border-color: rgba(230,126,34,0.3);
}
.sav-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
border-radius: 6px 6px 0 0;
opacity: 0;
transition: opacity 0.2s;
}
.sav-card:hover::before { opacity: 1; }
.sav-card--red::before { background: linear-gradient(90deg, #C0392B, #E67E22); }
.sav-card--amber::before { background: linear-gradient(90deg, #E67E22, #F39C12); }
.sav-card--steel::before { background: linear-gradient(90deg, #8A9BB0, #E67E22); }
.sav-card--tour::before { background: linear-gradient(90deg, #E67E22, #F39C12); }
/* Tour card full width */
.sav-card--tour {
margin: 0 2rem 1.1rem;
}
/* Updates card */
.sav-card--updates {
margin: 0 2rem 1.1rem;
}
/* ── CARD HEADER ── */
.sav-card-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 0.85rem;
}
.sav-card-icon {
width: 40px;
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
line-height: 40px;
text-align: center;
}
.sav-icon--red { background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3); }
.sav-icon--amber { background: rgba(230,126,34,0.15); border: 1px solid rgba(230,126,34,0.3); }
.sav-icon--steel { background: rgba(138,155,176,0.1); border: 1px solid rgba(138,155,176,0.2); }
/* ── BADGES ── */
.sav-badge {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.58rem;
letter-spacing: 0.12em;
padding: 0.18rem 0.5rem;
border-radius: 2px;
text-transform: uppercase;
}
.sav-badge--required { background: rgba(192,57,43,0.2); color: #E74C3C; border: 1px solid rgba(192,57,43,0.35); }
.sav-badge--updated { background: rgba(230,126,34,0.15); color: #F39C12; border: 1px solid rgba(230,126,34,0.3); }
.sav-badge--ops { background: rgba(138,155,176,0.1); color: #B0BEC5; border: 1px solid rgba(138,155,176,0.2); }
/* ── CARD CONTENT ── */
.sav-card-title {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 1.45rem;
letter-spacing: 0.06em;
color: #F0F4F8;
margin-bottom: 0.45rem;
}
.sav-card-desc {
font-size: 0.78rem;
color: #8A9BB0;
line-height: 1.65;
margin-bottom: 1rem;
}
/* ── CARD LINKS ── */
.sav-links {
list-style: none;
margin: 0 0 1rem 0;
padding: 0;
}
.sav-links li {
margin: 0;
padding: 0;
}
.sav-links li a,
.sav-links li {
display: block;
font-size: 0.78rem;
color: #B0BEC5 !important;
text-decoration: none;
padding: 0.38rem 0.55rem;
border-radius: 3px;
transition: background 0.15s, color 0.15s;
}
.sav-links li::before {
content: '› ';
color: #E67E22;
font-size: 0.95rem;
}
.sav-links li a:hover {
background: rgba(230,126,34,0.08);
color: #F39C12 !important;
}
/* ── CARD FOOTER ── */
.sav-card-footer {
border-top: 1px solid rgba(255,255,255,0.07);
padding-top: 0.7rem;
margin-top: 0.5rem;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.72rem;
}
.sav-count {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.62rem;
color: #8A9BB0;
letter-spacing: 0.06em;
}
.sav-card-footer a {
color: #E67E22 !important;
font-size: 0.72rem;
font-weight: 500;
text-decoration: none;
}
.sav-card-footer a:hover {
color: #F39C12 !important;
}
/* ── TOUR ROUTES ── */
.sav-routes {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin: 0.75rem 0 1rem;
}
.sav-route-tag a,
.sav-route-tag {
display: inline-block;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.68rem;
padding: 0.22rem 0.65rem;
border: 1px solid rgba(230,126,34,0.25);
border-radius: 3px;
color: #E67E22 !important;
background: rgba(230,126,34,0.07);
letter-spacing: 0.08em;
text-decoration: none;
transition: background 0.15s;
}
.sav-route-tag a:hover {
background: rgba(230,126,34,0.18);
}
/* ── UPDATE TABLE ── */
.sav-update-table {
width: 100%;
border-collapse: collapse;
margin-top: 0.5rem;
}
.sav-update-table tr {
border-bottom: 1px solid rgba(255,255,255,0.05);
transition: background 0.15s;
}
.sav-update-table tr:last-child { border-bottom: none; }
.sav-update-table tr:hover { background: rgba(255,255,255,0.02); }
.sav-update-table td {
padding: 0.7rem 0.5rem;
font-size: 0.8rem;
color: #F0F4F8;
vertical-align: middle;
border: none;
background: transparent !important;
}
.sav-update-table td:first-child { width: 24px; }
.sav-update-table td:last-child {
text-align: right;
width: 160px;
}
.sav-update-table a {
color: #B0BEC5 !important;
text-decoration: none;
}
.sav-update-table a:hover { color: #F39C12 !important; }
.sav-update-meta {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
color: #8A9BB0;
letter-spacing: 0.05em;
}
/* ── STATUS DOTS ── */
.sav-dot {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
}
.sav-dot--red { background: #E74C3C; box-shadow: 0 0 6px rgba(231,76,60,0.6); }
.sav-dot--amber { background: #F39C12; box-shadow: 0 0 6px rgba(243,156,18,0.5); }
.sav-dot--steel { background: #8A9BB0; }
/* ── QUICK ACCESS GRID ── */
.sav-quick-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
background: rgba(255,255,255,0.07);
border-radius: 6px;
overflow: hidden;
margin: 0 2rem;
}
.sav-quick-item {
background: #111418;
padding: 1.1rem 0.75rem;
text-align: center;
transition: background 0.15s;
cursor: pointer;
}
.sav-quick-item:hover { background: #181C22; }
.sav-quick-item a {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.45rem;
font-size: 1.5rem;
color: inherit;
text-decoration: none;
}
.sav-quick-item span {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
color: #8A9BB0;
letter-spacing: 0.1em;
text-transform: uppercase;
line-height: 1.4;
display: block;
}
/* ── RESPONSIVE ── */
@media screen and (max-width: 900px) {
.sav-grid { grid-template-columns: 1fr 1fr; }
.sav-quick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
.sav-grid { grid-template-columns: 1fr; padding: 0 1rem; }
.sav-card--tour, .sav-card--updates { margin: 0 1rem 1.1rem; }
.sav-quick-grid { margin: 0 1rem; }
.sav-hero { padding: 2rem 1.25rem; }
.sav-stats { gap: 1.25rem; }
}
/* Hide sidebar on Main Page only */
.page-Main_Page #mw-panel,
.page-Main_Page .mw-sidebar {
display: none;
}
.page-Main_Page #content {
margin-left: 0 !important;
}
/* ═══════════════════════════════════════════════════════════
SKYWARD AIR VIRTUAL — GETTING STARTED PAGE ADDITIONS
Append to: MediaWiki:Common.css (add below existing styles)
═══════════════════════════════════════════════════════════ */
/* ── PAGE NAV BAR ── */
.sav-page-nav {
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
padding: 0.75rem 2rem;
background: #111418;
border-bottom: 1px solid rgba(255,255,255,0.07);
margin-bottom: 2rem;
}
.sav-page-nav-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
color: #8A9BB0;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-right: 0.5rem;
}
.sav-page-nav-link {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.65rem;
color: #8A9BB0 !important;
text-decoration: none;
padding: 0.2rem 0.65rem;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 3px;
transition: all 0.15s;
letter-spacing: 0.05em;
}
.sav-page-nav-link:hover {
color: #F39C12 !important;
border-color: rgba(230,126,34,0.3);
background: rgba(230,126,34,0.06);
}
/* ── CONTENT WRAPPER ── */
.sav-content {
padding: 0;
}
/* ── SECTION BLOCKS ── */
.sav-section {
margin: 0 2rem 1.5rem;
background: #111418;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 6px;
overflow: hidden;
transition: border-color 0.2s;
}
.sav-section:hover {
border-color: rgba(230,126,34,0.2);
}
.sav-section-header {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.25rem 1.5rem;
border-bottom: 1px solid rgba(255,255,255,0.06);
background: rgba(255,255,255,0.02);
}
.sav-step-num {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 2.5rem;
line-height: 1;
color: rgba(230,126,34,0.25);
letter-spacing: 0.05em;
min-width: 52px;
}
.sav-section-title {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 1.6rem;
letter-spacing: 0.06em;
color: #F0F4F8;
line-height: 1;
}
.sav-section-sub {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.62rem;
color: #8A9BB0;
letter-spacing: 0.12em;
text-transform: uppercase;
margin-top: 0.2rem;
}
.sav-section-body {
padding: 1.5rem;
}
.sav-p {
font-size: 0.88rem;
color: #B0BEC5;
line-height: 1.75;
margin-bottom: 1.25rem;
}
/* ── STEP LIST ── */
.sav-steps-list {
display: flex;
flex-direction: column;
gap: 0;
margin-bottom: 1.25rem;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 5px;
overflow: hidden;
}
.sav-step-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1rem 1.25rem;
border-bottom: 1px solid rgba(255,255,255,0.05);
transition: background 0.15s;
}
.sav-step-item:last-child { border-bottom: none; }
.sav-step-item:hover { background: rgba(230,126,34,0.04); }
.sav-step-marker {
flex-shrink: 0;
width: 26px;
height: 26px;
border-radius: 50%;
background: rgba(230,126,34,0.15);
border: 1px solid rgba(230,126,34,0.35);
color: #F39C12;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.7rem;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0.1rem;
}
.sav-step-title {
font-size: 0.85rem;
font-weight: 500;
color: #F0F4F8;
margin-bottom: 0.3rem;
}
.sav-step-desc {
font-size: 0.78rem;
color: #8A9BB0;
line-height: 1.65;
}
.sav-step-desc a { color: #E67E22 !important; }
.sav-step-desc a:hover { color: #F39C12 !important; }
/* ── INFOBOXES ── */
.sav-infobox {
display: flex;
align-items: flex-start;
gap: 0.85rem;
padding: 0.9rem 1.1rem;
border-radius: 5px;
font-size: 0.8rem;
line-height: 1.65;
margin-top: 1rem;
}
.sav-infobox-icon {
font-size: 1rem;
flex-shrink: 0;
margin-top: 0.05rem;
}
.sav-infobox--amber {
background: rgba(230,126,34,0.08);
border: 1px solid rgba(230,126,34,0.25);
color: #B0BEC5;
}
.sav-infobox--amber strong { color: #F39C12; }
.sav-infobox--steel {
background: rgba(138,155,176,0.06);
border: 1px solid rgba(138,155,176,0.18);
color: #B0BEC5;
}
.sav-infobox--steel strong { color: #F0F4F8; }
.sav-infobox--red {
background: rgba(192,57,43,0.1);
border: 1px solid rgba(192,57,43,0.3);
color: #B0BEC5;
}
.sav-infobox--red strong { color: #E74C3C; }
/* ── SIMULATOR CARDS ── */
.sav-sim-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
margin-bottom: 1.25rem;
}
.sav-sim-card {
background: #181C22;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 5px;
padding: 1.1rem 0.85rem;
text-align: center;
transition: border-color 0.15s;
}
.sav-sim-card:hover { border-color: rgba(230,126,34,0.25); }
.sav-sim-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.sav-sim-name {
font-size: 0.8rem;
font-weight: 500;
color: #F0F4F8;
margin-bottom: 0.2rem;
line-height: 1.3;
}
.sav-sim-short {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
color: #8A9BB0;
letter-spacing: 0.05em;
margin-bottom: 0.6rem;
}
.sav-sim-status {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.58rem;
letter-spacing: 0.12em;
padding: 0.15rem 0.5rem;
border-radius: 2px;
text-transform: uppercase;
display: inline-block;
}
.sav-sim-status--supported {
background: rgba(39,174,96,0.15);
border: 1px solid rgba(39,174,96,0.3);
color: #2ECC71;
}
.sav-sim-status--optional {
background: rgba(230,126,34,0.12);
border: 1px solid rgba(230,126,34,0.25);
color: #F39C12;
}
/* ── RANK TABLE ── */
.sav-rank-table-wrap {
margin-bottom: 1.25rem;
overflow-x: auto;
border-radius: 5px;
border: 1px solid rgba(255,255,255,0.07);
}
.sav-rank-table {
width: 100%;
border-collapse: collapse;
}
.sav-rank-table th {
background: #181C22;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.62rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #8A9BB0;
padding: 0.75rem 1rem;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.08);
font-weight: 500;
}
.sav-rank-table td {
padding: 0.7rem 1rem;
font-size: 0.8rem;
color: #B0BEC5;
border-bottom: 1px solid rgba(255,255,255,0.04);
background: transparent !important;
border: none;
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sav-rank-table tr:last-child td { border-bottom: none; }
.sav-rank-table tr:hover td { background: rgba(255,255,255,0.02) !important; }
.sav-rank-badge {
display: inline-block;
font-size: 0.75rem;
font-weight: 500;
padding: 0.18rem 0.6rem;
border-radius: 3px;
white-space: nowrap;
}
.sav-rank--1 { background: rgba(138,155,176,0.12); color: #B0BEC5; border: 1px solid rgba(138,155,176,0.2); }
.sav-rank--2 { background: rgba(138,155,176,0.14); color: #C5D0DA; border: 1px solid rgba(138,155,176,0.25); }
.sav-rank--3 { background: rgba(230,126,34,0.1); color: #E67E22; border: 1px solid rgba(230,126,34,0.2); }
.sav-rank--4 { background: rgba(230,126,34,0.13); color: #F39C12; border: 1px solid rgba(230,126,34,0.28); }
.sav-rank--5 { background: rgba(230,126,34,0.16); color: #F5A623; border: 1px solid rgba(230,126,34,0.32); }
.sav-rank--6 { background: rgba(192,57,43,0.12); color: #E74C3C; border: 1px solid rgba(192,57,43,0.25); }
.sav-rank--7 { background: rgba(192,57,43,0.18); color: #E74C3C; border: 1px solid rgba(192,57,43,0.35); }
.sav-rank--8 { background: rgba(192,57,43,0.22); color: #FF6B6B; border: 1px solid rgba(192,57,43,0.4); }
/* ── RULES GRID ── */
.sav-rules-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
margin-bottom: 1.25rem;
}
.sav-rule-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 0.85rem 1rem;
background: #181C22;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 5px;
font-size: 0.8rem;
color: #B0BEC5;
line-height: 1.6;
}
.sav-rule-icon {
flex-shrink: 0;
width: 22px;
height: 22px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: 700;
margin-top: 0.05rem;
}
.sav-rule--green { background: rgba(39,174,96,0.15); color: #2ECC71; border: 1px solid rgba(39,174,96,0.3); }
.sav-rule--red { background: rgba(192,57,43,0.15); color: #E74C3C; border: 1px solid rgba(192,57,43,0.3); }
.sav-rule-text strong { color: #F0F4F8; }
/* ── RESPONSIVE ── */
@media screen and (max-width: 900px) {
.sav-sim-grid { grid-template-columns: repeat(2, 1fr); }
.sav-rules-grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 600px) {
.sav-section { margin: 0 1rem 1.25rem; }
.sav-sim-grid { grid-template-columns: 1fr 1fr; }
.sav-page-nav { padding: 0.75rem 1rem; }
}
/* ═══════════════════════════════════════════════════════════
SKYWARD AIR VIRTUAL — FLEET PAGE ADDITIONS
Append to: MediaWiki:Common.css (add below existing styles)
═══════════════════════════════════════════════════════════ */
/* ── FLEET OVERVIEW GRID ── */
.sav-fleet-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
padding: 0 2rem;
margin-bottom: 1.5rem;
}
.sav-fleet-card {
background: #111418;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 6px;
overflow: hidden;
transition: border-color 0.2s, transform 0.2s;
}
.sav-fleet-card:hover {
border-color: rgba(230,126,34,0.3);
transform: translateY(-2px);
}
.sav-fleet-card-img {
background: #0A0C0F;
border-bottom: 1px solid rgba(255,255,255,0.06);
min-height: 180px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.sav-fleet-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.sav-fleet-card-img--placeholder {
background: #0E1116;
}
.sav-fleet-placeholder {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 2.5rem;
opacity: 0.4;
}
.sav-fleet-placeholder-icon { font-size: 2.5rem; }
.sav-fleet-placeholder-text {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.65rem;
color: #8A9BB0;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.sav-fleet-card-body { padding: 1.25rem; }
.sav-fleet-type-tag {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
color: #E67E22;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 0.4rem;
}
.sav-fleet-name {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 1.8rem;
letter-spacing: 0.05em;
color: #F0F4F8;
line-height: 1;
margin-bottom: 0.5rem;
}
.sav-fleet-specs-mini {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.65rem;
color: #8A9BB0;
letter-spacing: 0.04em;
margin-bottom: 0.75rem;
display: flex;
flex-wrap: wrap;
gap: 0.3rem;
align-items: center;
}
.sav-sep { color: rgba(255,255,255,0.2); }
.sav-fleet-desc {
font-size: 0.78rem;
color: #8A9BB0;
line-height: 1.65;
margin-bottom: 1rem;
}
.sav-fleet-card-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 0.75rem;
border-top: 1px solid rgba(255,255,255,0.06);
font-size: 0.78rem;
}
.sav-fleet-card-footer a {
color: #E67E22 !important;
text-decoration: none;
font-weight: 500;
transition: color 0.15s;
}
.sav-fleet-card-footer a:hover { color: #F39C12 !important; }
/* ── SPECS GRID ── */
.sav-specs-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.sav-spec-group {
background: #181C22;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 5px;
overflow: hidden;
}
.sav-spec-group-title {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #E67E22;
padding: 0.6rem 1rem;
border-bottom: 1px solid rgba(255,255,255,0.06);
background: rgba(230,126,34,0.05);
}
.sav-spec-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 1rem;
border-bottom: 1px solid rgba(255,255,255,0.04);
transition: background 0.12s;
}
.sav-spec-row:last-child { border-bottom: none; }
.sav-spec-row:hover { background: rgba(255,255,255,0.02); }
.sav-spec-label {
font-size: 0.75rem;
color: #8A9BB0;
}
.sav-spec-val {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.72rem;
color: #F0F4F8;
text-align: right;
}
/* ── LIVERY SECTION ── */
.sav-livery-body {
text-align: center;
}
.sav-livery-body img {
border-radius: 4px;
max-width: 100%;
}
.sav-livery-caption {
font-size: 0.75rem;
color: #8A9BB0;
margin-top: 0.85rem;
font-style: italic;
line-height: 1.6;
}
/* ── ADDON LIST ── */
.sav-addon-list {
display: flex;
flex-direction: column;
gap: 0;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 5px;
overflow: hidden;
margin-bottom: 1.25rem;
}
.sav-addon-item {
padding: 1.1rem 1.25rem;
border-bottom: 1px solid rgba(255,255,255,0.05);
transition: background 0.15s;
}
.sav-addon-item:last-child { border-bottom: none; }
.sav-addon-item:hover { background: rgba(255,255,255,0.015); }
.sav-addon--top {
background: rgba(230,126,34,0.04);
border-left: 3px solid rgba(230,126,34,0.4);
}
.sav-addon-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.5rem;
}
.sav-addon-name {
font-size: 0.88rem;
font-weight: 500;
color: #F0F4F8;
}
.sav-addon-badge {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.58rem;
letter-spacing: 0.1em;
padding: 0.15rem 0.5rem;
border-radius: 2px;
text-transform: uppercase;
flex-shrink: 0;
}
.sav-addon-badge--recommended { background: rgba(230,126,34,0.2); color: #F39C12; border: 1px solid rgba(230,126,34,0.35); }
.sav-addon-badge--free { background: rgba(39,174,96,0.15); color: #2ECC71; border: 1px solid rgba(39,174,96,0.3); }
.sav-addon-badge--livery { background: rgba(138,155,176,0.12); color: #B0BEC5; border: 1px solid rgba(138,155,176,0.2); }
.sav-addon-desc {
font-size: 0.78rem;
color: #8A9BB0;
line-height: 1.65;
margin-bottom: 0.6rem;
}
.sav-addon-links {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.sav-addon-link a,
.sav-addon-link {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.65rem;
color: #E67E22 !important;
text-decoration: none;
padding: 0.18rem 0.6rem;
border: 1px solid rgba(230,126,34,0.25);
border-radius: 3px;
background: rgba(230,126,34,0.06);
letter-spacing: 0.06em;
transition: background 0.15s;
display: inline-block;
}
.sav-addon-link a:hover,
.sav-addon-link:hover {
background: rgba(230,126,34,0.15);
color: #F39C12 !important;
}
/* ── STEP NUM IMAGE VARIANT ── */
.sav-step-num--img {
font-size: 1.5rem;
min-width: 52px;
display: flex;
align-items: center;
justify-content: center;
}
/* ── RESPONSIVE ── */
@media screen and (max-width: 900px) {
.sav-fleet-grid { grid-template-columns: 1fr 1fr; }
.sav-specs-grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 600px) {
.sav-fleet-grid { grid-template-columns: 1fr; padding: 0 1rem; }
}
/* ═══════════════════════════════════════════════════════════
SKYWARD AIR VIRTUAL — SOP PAGE ADDITIONS
Append to: MediaWiki:Common.css (add below existing styles)
═══════════════════════════════════════════════════════════ */
/* ── SOP BLOCK ── */
.sav-sop-block {
margin-bottom: 1.5rem;
}
.sav-sop-block:last-child { margin-bottom: 0; }
.sav-sop-block-title {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.65rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #E67E22;
margin-bottom: 0.75rem;
padding-bottom: 0.4rem;
border-bottom: 1px solid rgba(230,126,34,0.2);
}
/* ── CHECKLIST ── */
.sav-checklist {
display: flex;
flex-direction: column;
gap: 0;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 5px;
overflow: hidden;
}
.sav-check-item {
display: flex;
align-items: flex-start;
gap: 0.85rem;
padding: 0.6rem 1rem;
border-bottom: 1px solid rgba(255,255,255,0.04);
font-size: 0.8rem;
color: #B0BEC5;
line-height: 1.5;
transition: background 0.12s;
}
.sav-check-item:last-child { border-bottom: none; }
.sav-check-item:hover { background: rgba(255,255,255,0.02); }
.sav-check-box {
flex-shrink: 0;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.75rem;
color: rgba(230,126,34,0.5);
margin-top: 0.05rem;
width: 16px;
}
/* ── PHRASEOLOGY BOXES ── */
.sav-phrase-section-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #8A9BB0;
margin: 1rem 0 0.4rem;
}
.sav-phrase-section-label:first-child { margin-top: 0; }
.sav-phrasebox {
background: #0E1116;
border: 1px solid rgba(255,255,255,0.06);
border-left: 3px solid rgba(230,126,34,0.4);
border-radius: 0 4px 4px 0;
padding: 0.85rem 1rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-bottom: 0.25rem;
}
.sav-phrasebox--emergency {
border-left-color: rgba(192,57,43,0.7);
background: rgba(192,57,43,0.05);
}
.sav-phrase-pilot {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.75rem;
color: #F0F4F8;
line-height: 1.6;
letter-spacing: 0.02em;
}
.sav-phrase-pilot::before {
content: '▶ ';
color: #E67E22;
font-size: 0.65rem;
}
.sav-phrase-atc {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.75rem;
color: #8A9BB0;
line-height: 1.6;
letter-spacing: 0.02em;
}
.sav-phrase-atc::before {
content: '◀ ';
color: #8A9BB0;
font-size: 0.65rem;
}
.sav-phrasebox--emergency .sav-phrase-pilot::before {
content: '⚠ ';
color: #E74C3C;
}
/* ── DATA TABLES ── */
.sav-table-wrap {
overflow-x: auto;
border-radius: 5px;
border: 1px solid rgba(255,255,255,0.07);
margin-bottom: 1rem;
}
.sav-data-table {
width: 100%;
border-collapse: collapse;
}
.sav-data-table th {
background: #181C22;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.62rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #8A9BB0;
padding: 0.65rem 1rem;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.08);
font-weight: 500;
white-space: nowrap;
}
.sav-data-table td {
padding: 0.6rem 1rem;
font-size: 0.78rem;
color: #B0BEC5;
border-bottom: 1px solid rgba(255,255,255,0.04);
background: transparent !important;
border: none;
border-bottom: 1px solid rgba(255,255,255,0.04);
vertical-align: top;
}
.sav-data-table tr:last-child td { border-bottom: none; }
.sav-data-table tr:hover td { background: rgba(255,255,255,0.02) !important; }
.sav-data-table td:first-child { color: #F0F4F8; font-weight: 400; }
/* ── RESPONSIVE ── */
@media screen and (max-width: 700px) {
.sav-phrasebox { padding: 0.75rem; }
.sav-phrase-pilot,
.sav-phrase-atc { font-size: 0.68rem; }
}
/* ═══════════════════════════════════════════════════════════
SKYWARD AIR VIRTUAL — HERITAGE PAGE ADDITIONS
Append to: MediaWiki:Common.css
═══════════════════════════════════════════════════════════ */
/* ── PULL QUOTE ── */
.sav-heritage-pull {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 1.6rem;
letter-spacing: 0.06em;
color: rgba(243,156,18,0.7);
border-left: 3px solid rgba(230,126,34,0.4);
padding: 0.5rem 1.25rem;
margin: 0 0 1.5rem;
line-height: 1.3;
}
/* ── LIVERY ERA GRID ── */
.sav-livery-era-grid {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.sav-livery-era {
background: #181C22;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 6px;
overflow: hidden;
display: grid;
grid-template-columns: 380px 1fr;
grid-template-rows: auto 1fr;
}
.sav-livery-era-header {
grid-column: 1 / 3;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1.25rem;
border-bottom: 1px solid rgba(255,255,255,0.06);
background: rgba(255,255,255,0.02);
}
.sav-livery-era-num {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.62rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #E67E22;
}
.sav-livery-era-dates {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.62rem;
color: #8A9BB0;
letter-spacing: 0.1em;
}
.sav-livery-era-img {
border-right: 1px solid rgba(255,255,255,0.06);
background: #0E1116;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
min-height: 200px;
}
.sav-livery-era-img img {
max-width: 100%;
max-height: 220px;
object-fit: contain;
}
.sav-livery-era-body {
padding: 1.25rem;
}
.sav-livery-era-name {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 1.4rem;
letter-spacing: 0.06em;
color: #F0F4F8;
margin-bottom: 0.6rem;
}
.sav-livery-era-desc {
font-size: 0.8rem;
color: #8A9BB0;
line-height: 1.7;
margin-bottom: 1rem;
}
.sav-livery-era-tags {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
}
.sav-livery-tag {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.6rem;
letter-spacing: 0.1em;
padding: 0.18rem 0.55rem;
border-radius: 2px;
text-transform: uppercase;
background: rgba(138,155,176,0.1);
border: 1px solid rgba(138,155,176,0.18);
color: #8A9BB0;
}
.sav-livery-tag--current {
background: rgba(230,126,34,0.15);
border-color: rgba(230,126,34,0.3);
color: #F39C12;
}
/* ── NETWORK PHASES ── */
.sav-network-phases {
display: flex;
flex-direction: column;
gap: 0;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 5px;
overflow: hidden;
}
.sav-network-phase {
padding: 1.1rem 1.25rem;
border-bottom: 1px solid rgba(255,255,255,0.05);
transition: background 0.15s;
}
.sav-network-phase:last-child { border-bottom: none; }
.sav-network-phase:hover { background: rgba(255,255,255,0.015); }
.sav-network-phase-header {
display: flex;
align-items: center;
gap: 0.85rem;
margin-bottom: 0.5rem;
}
.sav-network-phase-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.58rem;
letter-spacing: 0.15em;
text-transform: uppercase;
background: rgba(230,126,34,0.15);
color: #F39C12;
border: 1px solid rgba(230,126,34,0.3);
border-radius: 2px;
padding: 0.15rem 0.5rem;
flex-shrink: 0;
}
.sav-network-phase-title {
font-size: 0.88rem;
font-weight: 500;
color: #F0F4F8;
}
.sav-network-phase-body {
font-size: 0.8rem;
color: #8A9BB0;
line-height: 1.7;
}
/* ── TIMELINE ── */
.sav-timeline {
display: flex;
flex-direction: column;
gap: 0;
position: relative;
padding-left: 2rem;
}
.sav-timeline::before {
content: '';
position: absolute;
left: 7px;
top: 8px;
bottom: 8px;
width: 1px;
background: linear-gradient(180deg, rgba(230,126,34,0.5), rgba(192,57,43,0.3), rgba(230,126,34,0.1));
}
.sav-timeline-item {
display: flex;
gap: 1.25rem;
padding: 0 0 1.5rem 0;
position: relative;
}
.sav-timeline-item:last-child { padding-bottom: 0; }
.sav-timeline-marker {
position: absolute;
left: -2rem;
top: 4px;
width: 14px;
height: 14px;
border-radius: 50%;
flex-shrink: 0;
border: 2px solid #0A0C0F;
}
.sav-timeline-marker--gold {
background: #E67E22;
box-shadow: 0 0 8px rgba(230,126,34,0.5);
}
.sav-timeline-marker--red {
background: #E74C3C;
box-shadow: 0 0 10px rgba(231,76,60,0.6);
width: 16px;
height: 16px;
top: 3px;
left: -2.1rem;
}
.sav-timeline-content { flex: 1; }
.sav-timeline-date {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.62rem;
color: #E67E22;
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 0.25rem;
}
.sav-timeline-title {
font-size: 0.92rem;
font-weight: 500;
color: #F0F4F8;
margin-bottom: 0.35rem;
line-height: 1.3;
}
.sav-timeline-desc {
font-size: 0.78rem;
color: #8A9BB0;
line-height: 1.65;
}
/* ── RESPONSIVE ── */
@media screen and (max-width: 800px) {
.sav-livery-era {
grid-template-columns: 1fr;
}
.sav-livery-era-header { grid-column: 1; }
.sav-livery-era-img { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
.sav-stat a {
color: #F39C12 !important;
text-decoration: none;
}
.sav-stat a:hover {
color: #E67E22 !important;
}