MediaWiki:Common.css
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
@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; }
}