WIP checkpoint

This commit is contained in:
2026-05-20 11:28:23 -04:00
parent dd55c1edc6
commit d756b91571
21 changed files with 806 additions and 49 deletions
+235 -10
View File
@@ -105,6 +105,19 @@ img {
font-weight: 700;
letter-spacing: 0.02em;
text-decoration: none;
display: flex;
align-items: center;
height: auto;
}
.brand img {
max-height: 2.5rem;
width: auto;
display: block;
}
.brand-mobile {
display: none;
}
.nav-links {
@@ -119,6 +132,49 @@ img {
text-decoration: none;
}
.nav-item {
position: relative;
padding-bottom: 0.5rem;
}
.nav-dropdown-menu {
position: absolute;
top: calc(100% + 0.5rem);
left: 50%;
transform: translateX(-50%);
min-width: 11rem;
display: grid;
gap: 0.2rem;
padding: 0.45rem;
border: 1px solid var(--line);
border-radius: 0.8rem;
background: rgba(255, 255, 255, 0.97);
box-shadow: var(--shadow);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.18s ease;
z-index: 24;
margin-top: -0.5rem;
}
.nav-dropdown-menu a {
padding: 0.45rem 0.6rem;
border-radius: 0.6rem;
color: var(--text);
}
.nav-dropdown-menu a:hover {
background: var(--brand-soft);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.nav-links a:hover,
.mobile-nav-panel a:hover {
color: var(--brand);
@@ -134,15 +190,16 @@ img {
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
justify-content: center;
min-height: 2.75rem;
padding: 0.7rem 1rem;
min-width: 2.75rem;
padding: 0;
border: 1px solid var(--line);
border-radius: 999px;
border-radius: 0.7rem;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(228, 240, 252, 0.95));
color: var(--brand);
font-weight: 800;
font-size: 1.4rem;
cursor: pointer;
box-shadow: var(--shadow);
}
@@ -151,14 +208,14 @@ img {
display: none;
}
.mobile-nav summary::after {
content: '';
font-size: 0.9rem;
color: var(--brand-2);
.mobile-nav summary::before {
content: '';
line-height: 1;
}
.mobile-nav[open] summary::after {
content: '';
.mobile-nav[open] summary::before {
content: '';
font-size: 1.2rem;
}
.mobile-nav-panel {
@@ -185,10 +242,52 @@ img {
font-weight: 700;
}
.mobile-subnav {
border-radius: 0.75rem;
}
.mobile-subnav summary {
list-style: none;
padding: 0.7rem 0.8rem;
border-radius: 0.75rem;
font-weight: 700;
cursor: pointer;
}
.mobile-subnav summary::-webkit-details-marker {
display: none;
}
.mobile-subnav-panel {
display: grid;
gap: 0.2rem;
margin: 0 0.2rem 0.35rem;
padding: 0.35rem;
border: 1px solid var(--line);
border-radius: 0.7rem;
background: rgba(255, 255, 255, 0.7);
}
main {
padding-block: 1.5rem 4rem;
}
.banner-image {
width: 100%;
display: block;
overflow: hidden;
margin: 0;
background: rgba(255, 255, 255, 0.4);
}
.banner-image img {
width: 100%;
height: auto;
display: block;
max-height: 12rem;
object-fit: cover;
}
section {
padding-block: 1rem;
}
@@ -502,6 +601,64 @@ section {
margin-bottom: 0;
}
.event-card {
position: relative;
}
.stretched-link {
position: absolute;
inset: 0;
z-index: 1;
}
.event-card-actions {
position: relative;
z-index: 2;
}
.event-layout {
display: grid;
grid-template-columns: minmax(10rem, 11.5rem) minmax(0, 1fr);
gap: 1rem;
align-items: start;
}
.event-date-block {
padding: 0.85rem 0.95rem;
border: 1px solid rgba(16, 34, 51, 0.12);
border-radius: var(--radius-sm);
background: linear-gradient(180deg, rgba(11, 79, 122, 0.1), rgba(29, 118, 184, 0.06));
}
.event-weekday,
.event-date,
.event-time {
margin: 0;
}
.event-weekday {
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--brand-2);
font-size: 0.73rem;
font-weight: 800;
}
.event-date {
margin-top: 0.3rem;
font-family: 'Fraunces', Georgia, serif;
font-size: 1.2rem;
font-weight: 700;
line-height: 1.2;
}
.event-time {
margin-top: 0.35rem;
color: var(--muted);
font-size: 0.9rem;
font-weight: 700;
}
.split-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -540,18 +697,74 @@ section {
max-width: 72ch;
}
.runway-table-wrap {
width: 100%;
overflow-x: auto;
margin: 1rem auto 1.25rem;
}
.runway-facts-table {
width: min(100%, 46rem);
margin-inline: auto;
border-collapse: collapse;
border: 1px solid var(--line);
border-radius: var(--radius-sm);
overflow: hidden;
background: rgba(255, 255, 255, 0.84);
box-shadow: 0 12px 24px rgba(16, 34, 51, 0.08);
}
.runway-facts-table thead {
background: linear-gradient(180deg, rgba(11, 79, 122, 0.14), rgba(29, 118, 184, 0.09));
}
.runway-facts-table th,
.runway-facts-table td {
padding: 0.7rem 0.85rem;
border-bottom: 1px solid var(--line);
text-align: left;
white-space: nowrap;
}
.runway-facts-table th {
font-size: 0.83rem;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--brand);
}
.runway-facts-table tbody tr:nth-child(even) {
background: rgba(255, 255, 255, 0.64);
}
.runway-facts-table tbody tr:hover {
background: var(--brand-soft);
}
.runway-facts-table tbody tr:last-child td {
border-bottom: 0;
}
.prose h2,
.prose h3 {
font-family: 'Manrope', system-ui, sans-serif;
font-weight: 800;
}
.text-multiline {
white-space: pre-line;
}
.stack {
display: grid;
gap: 1rem;
}
@media (max-width: 860px) {
.event-layout {
grid-template-columns: 1fr;
}
.split-grid,
.footer-grid,
.operational-grid {
@@ -598,4 +811,16 @@ section {
.mobile-nav {
display: block;
}
.brand-mobile {
display: flex;
}
.brand-mobile img {
max-height: 2rem;
}
.runway-facts-table {
min-width: 38rem;
}
}