FHODSArchive (talk | contribs) No edit summary |
FHODSArchive (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* ============================================= | |||
FHODS Archive – Homepage layout | |||
============================================= */ | |||
.fhods-homepage { | |||
font-family: sans-serif; | |||
max-width: 900px; | |||
margin: 0 auto; | |||
padding: 0 0 2rem; | |||
} | |||
/* Hero */ | |||
.fhods-hero { | |||
text-align: center; | |||
padding: 3rem 1.5rem 2.5rem; | |||
border-bottom: 1px solid #e0ddd6; | |||
} | |||
.fhods-hero-eyebrow { | |||
font-size: 12px; | |||
letter-spacing: 1.5px; | |||
text-transform: uppercase; | |||
color: #888; | |||
margin-bottom: 10px; | |||
} | |||
.fhods-hero-title { | |||
font-size: 26px; | |||
font-weight: 500; | |||
margin-bottom: 10px; | |||
border: none; | |||
} | |||
.fhods-hero-desc { | |||
font-size: 15px; | |||
color: #555; | |||
max-width: 480px; | |||
margin: 0 auto 1.5rem; | |||
line-height: 1.6; | |||
} | |||
.fhods-hero-stats { | |||
display: flex; | |||
justify-content: center; | |||
gap: 2.5rem; | |||
} | |||
.fhods-hero-stat { | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
} | |||
.fhods-stat-num { | |||
font-size: 22px; | |||
font-weight: 500; | |||
color: #222; | |||
} | |||
.fhods-stat-num a { color: #222; text-decoration: none; } | |||
.fhods-stat-label { | |||
font-size: 12px; | |||
color: #999; | |||
margin-top: 2px; | |||
} | |||
/* Two-column layout */ | |||
.fhods-main-layout { | |||
display: grid; | |||
grid-template-columns: 1fr 280px; | |||
gap: 20px; | |||
padding: 24px 0 0; | |||
} | |||
.fhods-col-main, | |||
.fhods-col-sidebar { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 16px; | |||
} | |||
/* Cards */ | |||
.fhods-card { | |||
background: #fff; | |||
border: 0.5px solid #ddd; | |||
border-radius: 10px; | |||
overflow: hidden; | |||
} | |||
.fhods-card-header { | |||
padding: 12px 16px; | |||
border-bottom: 0.5px solid #e8e8e8; | |||
font-size: 12px; | |||
font-weight: 500; | |||
text-transform: uppercase; | |||
letter-spacing: 0.8px; | |||
color: #777; | |||
} | |||
.fhods-card-header--split { | |||
display: flex; | |||
justify-content: space-between; | |||
align-items: center; | |||
} | |||
.fhods-card-link { | |||
font-size: 12px; | |||
font-weight: 400; | |||
text-transform: none; | |||
letter-spacing: 0; | |||
color: #999; | |||
} | |||
.fhods-card-link a { color: #999; } | |||
/* Browse grid */ | |||
.fhods-browse-grid { | |||
display: grid; | |||
grid-template-columns: repeat(2, 1fr); | |||
} | |||
.fhods-browse-item { | |||
padding: 16px; | |||
border-right: 0.5px solid #eee; | |||
border-bottom: 0.5px solid #eee; | |||
cursor: pointer; | |||
} | |||
.fhods-browse-item:nth-child(even) { border-right: none; } | |||
.fhods-browse-item:nth-child(3), | |||
.fhods-browse-item:nth-child(4) { border-bottom: none; } | |||
.fhods-browse-icon { font-size: 22px; margin-bottom: 6px; } | |||
.fhods-browse-label { font-size: 14px; font-weight: 500; } | |||
.fhods-browse-label a { color: #222; text-decoration: none; } | |||
.fhods-browse-label a:hover { text-decoration: underline; } | |||
.fhods-browse-count { font-size: 12px; color: #999; margin-top: 2px; } | |||
/* News */ | |||
.fhods-news-table { | |||
width: 100%; | |||
border-collapse: collapse; | |||
margin: 0; | |||
} | |||
.fhods-news-table tr { | |||
border-bottom: 0.5px solid #f0f0f0; | |||
} | |||
.fhods-news-date { | |||
font-size: 12px; | |||
color: #aaa; | |||
padding: 12px 12px 12px 16px; | |||
vertical-align: top; | |||
white-space: nowrap; | |||
width: 80px; | |||
} | |||
.fhods-news-body { | |||
font-size: 14px; | |||
padding: 12px 16px 12px 0; | |||
vertical-align: top; | |||
line-height: 1.5; | |||
} | |||
/* Site map */ | |||
.fhods-sitemap { padding: 12px 16px; } | |||
.fhods-sitemap-row { | |||
display: flex; | |||
gap: 12px; | |||
align-items: baseline; | |||
padding: 8px 0; | |||
border-bottom: 0.5px solid #f0f0f0; | |||
font-size: 13px; | |||
} | |||
.fhods-sitemap-row:last-child { border-bottom: none; padding-bottom: 0; } | |||
.fhods-sitemap-label { | |||
color: #aaa; | |||
min-width: 56px; | |||
font-size: 12px; | |||
} | |||
.fhods-sitemap-tags { color: #444; line-height: 1.8; } | |||
.fhods-sitemap-tags a { color: #444; } | |||
/* Progress */ | |||
.fhods-progress-body { padding: 14px 16px; } | |||
.fhods-progress-row { | |||
display: flex; | |||
justify-content: space-between; | |||
font-size: 13px; | |||
color: #555; | |||
margin-bottom: 6px; | |||
} | |||
.fhods-progress-row strong a { color: #222; } | |||
.fhods-progress-row--small { font-size: 11px; color: #aaa; margin-top: 4px; } | |||
.fhods-progress-bar-outer { | |||
background: #f0ede8; | |||
border-radius: 4px; | |||
height: 6px; | |||
margin: 4px 0 6px; | |||
} | |||
.fhods-progress-bar-inner { | |||
height: 6px; | |||
border-radius: 4px; | |||
background: #888; | |||
} | |||
.fhods-progress-note { | |||
font-size: 12px; | |||
color: #aaa; | |||
margin-top: 10px; | |||
line-height: 1.5; | |||
} | |||
/* Latest additions */ | |||
.fhods-latest-list { | |||
list-style: decimal; | |||
padding: 10px 16px 10px 36px; | |||
margin: 0; | |||
} | |||
.fhods-latest-list li { | |||
font-size: 13px; | |||
padding: 6px 0; | |||
border-bottom: 0.5px solid #f0f0f0; | |||
} | |||
.fhods-latest-list li:last-child { border-bottom: none; } | |||
/* Getting started */ | |||
.fhods-gs-list { | |||
list-style: none; | |||
padding: 0; | |||
margin: 0; | |||
} | |||
.fhods-gs-list li { | |||
padding: 10px 16px; | |||
border-bottom: 0.5px solid #f0f0f0; | |||
font-size: 13px; | |||
} | |||
.fhods-gs-list li:last-child { border-bottom: none; } | |||
/* Responsive: stack on narrow screens */ | |||
@media (max-width: 680px) { | |||
.fhods-main-layout { | |||
grid-template-columns: 1fr; | |||
} | |||
} | |||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
Revision as of 14:43, 11 June 2026
/* =============================================
FHODS Archive – Homepage layout
============================================= */
.fhods-homepage {
font-family: sans-serif;
max-width: 900px;
margin: 0 auto;
padding: 0 0 2rem;
}
/* Hero */
.fhods-hero {
text-align: center;
padding: 3rem 1.5rem 2.5rem;
border-bottom: 1px solid #e0ddd6;
}
.fhods-hero-eyebrow {
font-size: 12px;
letter-spacing: 1.5px;
text-transform: uppercase;
color: #888;
margin-bottom: 10px;
}
.fhods-hero-title {
font-size: 26px;
font-weight: 500;
margin-bottom: 10px;
border: none;
}
.fhods-hero-desc {
font-size: 15px;
color: #555;
max-width: 480px;
margin: 0 auto 1.5rem;
line-height: 1.6;
}
.fhods-hero-stats {
display: flex;
justify-content: center;
gap: 2.5rem;
}
.fhods-hero-stat {
display: flex;
flex-direction: column;
align-items: center;
}
.fhods-stat-num {
font-size: 22px;
font-weight: 500;
color: #222;
}
.fhods-stat-num a { color: #222; text-decoration: none; }
.fhods-stat-label {
font-size: 12px;
color: #999;
margin-top: 2px;
}
/* Two-column layout */
.fhods-main-layout {
display: grid;
grid-template-columns: 1fr 280px;
gap: 20px;
padding: 24px 0 0;
}
.fhods-col-main,
.fhods-col-sidebar {
display: flex;
flex-direction: column;
gap: 16px;
}
/* Cards */
.fhods-card {
background: #fff;
border: 0.5px solid #ddd;
border-radius: 10px;
overflow: hidden;
}
.fhods-card-header {
padding: 12px 16px;
border-bottom: 0.5px solid #e8e8e8;
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.8px;
color: #777;
}
.fhods-card-header--split {
display: flex;
justify-content: space-between;
align-items: center;
}
.fhods-card-link {
font-size: 12px;
font-weight: 400;
text-transform: none;
letter-spacing: 0;
color: #999;
}
.fhods-card-link a { color: #999; }
/* Browse grid */
.fhods-browse-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.fhods-browse-item {
padding: 16px;
border-right: 0.5px solid #eee;
border-bottom: 0.5px solid #eee;
cursor: pointer;
}
.fhods-browse-item:nth-child(even) { border-right: none; }
.fhods-browse-item:nth-child(3),
.fhods-browse-item:nth-child(4) { border-bottom: none; }
.fhods-browse-icon { font-size: 22px; margin-bottom: 6px; }
.fhods-browse-label { font-size: 14px; font-weight: 500; }
.fhods-browse-label a { color: #222; text-decoration: none; }
.fhods-browse-label a:hover { text-decoration: underline; }
.fhods-browse-count { font-size: 12px; color: #999; margin-top: 2px; }
/* News */
.fhods-news-table {
width: 100%;
border-collapse: collapse;
margin: 0;
}
.fhods-news-table tr {
border-bottom: 0.5px solid #f0f0f0;
}
.fhods-news-date {
font-size: 12px;
color: #aaa;
padding: 12px 12px 12px 16px;
vertical-align: top;
white-space: nowrap;
width: 80px;
}
.fhods-news-body {
font-size: 14px;
padding: 12px 16px 12px 0;
vertical-align: top;
line-height: 1.5;
}
/* Site map */
.fhods-sitemap { padding: 12px 16px; }
.fhods-sitemap-row {
display: flex;
gap: 12px;
align-items: baseline;
padding: 8px 0;
border-bottom: 0.5px solid #f0f0f0;
font-size: 13px;
}
.fhods-sitemap-row:last-child { border-bottom: none; padding-bottom: 0; }
.fhods-sitemap-label {
color: #aaa;
min-width: 56px;
font-size: 12px;
}
.fhods-sitemap-tags { color: #444; line-height: 1.8; }
.fhods-sitemap-tags a { color: #444; }
/* Progress */
.fhods-progress-body { padding: 14px 16px; }
.fhods-progress-row {
display: flex;
justify-content: space-between;
font-size: 13px;
color: #555;
margin-bottom: 6px;
}
.fhods-progress-row strong a { color: #222; }
.fhods-progress-row--small { font-size: 11px; color: #aaa; margin-top: 4px; }
.fhods-progress-bar-outer {
background: #f0ede8;
border-radius: 4px;
height: 6px;
margin: 4px 0 6px;
}
.fhods-progress-bar-inner {
height: 6px;
border-radius: 4px;
background: #888;
}
.fhods-progress-note {
font-size: 12px;
color: #aaa;
margin-top: 10px;
line-height: 1.5;
}
/* Latest additions */
.fhods-latest-list {
list-style: decimal;
padding: 10px 16px 10px 36px;
margin: 0;
}
.fhods-latest-list li {
font-size: 13px;
padding: 6px 0;
border-bottom: 0.5px solid #f0f0f0;
}
.fhods-latest-list li:last-child { border-bottom: none; }
/* Getting started */
.fhods-gs-list {
list-style: none;
padding: 0;
margin: 0;
}
.fhods-gs-list li {
padding: 10px 16px;
border-bottom: 0.5px solid #f0f0f0;
font-size: 13px;
}
.fhods-gs-list li:last-child { border-bottom: none; }
/* Responsive: stack on narrow screens */
@media (max-width: 680px) {
.fhods-main-layout {
grid-template-columns: 1fr;
}
}
/* CSS placed here will be applied to all skins */
/* Infoboxes */
.infobox {
border: 15px solid #364361;
color: black;
padding: 0.2em;
font-size: 88%;
line-height: 1.5em;
border-spacing: 3px;
}
@media screen {
.infobox {
background-color: #f8f9fa;
}
}
@media (max-width: 640px) {
.infobox {
width: 100%;
}
.infobox .nowrap {
white-space: normal;
}
}
@media (min-width: 640px) {
.infobox {
/* @noflip */
margin: 0.5em 0 0.5em 1em;
/* @noflip */
float: right;
/* @noflip */
clear: right;
width: 22em;
}
}
.infobox-header,
.infobox-label,
.infobox-above,
.infobox-full-data,
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox th,
.infobox td {
vertical-align: top;
}
.infobox-label,
.infobox-data,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox th,
.infobox td {
/* @noflip */
text-align: left;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-above,
.infobox .infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox caption {
font-size: 125%;
font-weight: bold;
text-align: center;
}
.infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates */
.infobox caption {
padding: 0.2em;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
text-align: center;
}
/* Remove .infobox when element selectors above are removed */
.infobox .infobox-navbar {
/* @noflip */
text-align: right;
}
/* Template Data */
table.templatedata {
margin: .1em 1.5em .1em .1em;
background: #f9f9f9;
border: 1px #aaaaaa solid;
border-collapse: collapse;
}
table.templatedata th,
table.templatedata td {
border: 1px #aaaaaa solid;
padding: 0.4em 0.6em;
vertical-align: top;
}
table.templatedata {
background: #f2f2f2;
text-align: center;
}
table.templatedata caption {
margin: 0.2em inherit 0.05em inherit;
font-weight: bold;
font-size: 1.1em;
}
