Add Watchlists section — hub, 5 collection pages, build pipeline
- watchlists-hub.html: comic book panel grid, neon-teal/green/toucan palette, Rambla-only type hierarchy, CSS stagger entrance, wired to star map - 5 collection pages built from *-watchlist.md sources via build.py: contentaddictionarchive, analogfrontier, culturaldecay, soundscapeanomalies, lastcinema - build.py: parses MD files, generates self-contained HTML pages, updates hub subtitle with live counts - index.html: Watchlists star node wired to Watchlists/watchlists-hub.html Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
257
Watchlists/watchlists-hub.html
Normal file
257
Watchlists/watchlists-hub.html
Normal file
@@ -0,0 +1,257 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>WATCHLISTS | SINGULAR PARTICULAR</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Rambla:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg-void: #04060b;
|
||||
--text-warm: #e8d5b8;
|
||||
--wl-teal: #2ac4b3;
|
||||
--wl-green: #32dc8c;
|
||||
--wl-toucan: #ffcf40;
|
||||
--wl-teal-glow: rgba(42, 196, 179, 0.22);
|
||||
--wl-green-glow: rgba(50, 220, 140, 0.22);
|
||||
--wl-toucan-glow: rgba(255, 207, 64, 0.22);
|
||||
--muted: rgba(232, 213, 184, 0.45);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--bg-void);
|
||||
color: var(--text-warm);
|
||||
font-family: 'Rambla', sans-serif;
|
||||
line-height: 1.5;
|
||||
padding: 2.5rem 2rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
header {
|
||||
margin-bottom: 3.5rem;
|
||||
}
|
||||
|
||||
.back-link {
|
||||
display: inline-block;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
color: var(--wl-teal);
|
||||
font-size: 0.85rem;
|
||||
letter-spacing: 0.06em;
|
||||
margin-bottom: 1.25rem;
|
||||
transition: color 100ms ease;
|
||||
}
|
||||
|
||||
.back-link:hover {
|
||||
color: var(--wl-green);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(3rem, 10vw, 5.5rem);
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
color: var(--wl-teal);
|
||||
line-height: 0.88;
|
||||
letter-spacing: -0.02em;
|
||||
margin-bottom: 0.75rem;
|
||||
border-left: 6px solid var(--wl-toucan);
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
color: var(--wl-green);
|
||||
font-size: 0.78rem;
|
||||
letter-spacing: 0.12em;
|
||||
padding-left: calc(1rem + 6px); /* align under h1 text */
|
||||
}
|
||||
|
||||
.hub-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 2.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hub-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(2.5rem, 12vw, 4rem);
|
||||
}
|
||||
}
|
||||
|
||||
/* Panel entrance stagger */
|
||||
@keyframes panelIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(18px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.panel-card {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
border: 2px solid var(--border-color);
|
||||
background: var(--bg-void);
|
||||
transition: box-shadow 100ms ease, border-color 100ms ease;
|
||||
position: relative;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
|
||||
animation: panelIn 320ms ease both;
|
||||
}
|
||||
|
||||
.panel-card:nth-child(1) { animation-delay: 0ms; }
|
||||
.panel-card:nth-child(2) { animation-delay: 80ms; }
|
||||
.panel-card:nth-child(3) { animation-delay: 160ms; }
|
||||
.panel-card:nth-child(4) { animation-delay: 240ms; }
|
||||
.panel-card:nth-child(5) { animation-delay: 320ms; }
|
||||
|
||||
.panel-card:hover {
|
||||
box-shadow: 0 0 8px 4px var(--glow-color), 0 4px 8px rgba(0, 0, 0, 0.6);
|
||||
border-color: var(--hover-border);
|
||||
}
|
||||
|
||||
.panel-header {
|
||||
background: var(--border-color);
|
||||
padding: 0.75rem 1.25rem;
|
||||
color: var(--bg-void);
|
||||
}
|
||||
|
||||
.panel-header h2 {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
margin: 0;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
padding: 1.25rem 1.25rem 1.5rem;
|
||||
}
|
||||
|
||||
.count {
|
||||
display: block;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.12em;
|
||||
color: var(--muted);
|
||||
margin-bottom: 0.6rem;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-style: italic;
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-warm);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Color rotation */
|
||||
.panel-teal {
|
||||
--border-color: var(--wl-teal);
|
||||
--glow-color: var(--wl-teal-glow);
|
||||
--hover-border: var(--wl-green);
|
||||
}
|
||||
|
||||
.panel-green {
|
||||
--border-color: var(--wl-green);
|
||||
--glow-color: var(--wl-green-glow);
|
||||
--hover-border: var(--wl-toucan);
|
||||
}
|
||||
|
||||
.panel-toucan {
|
||||
--border-color: var(--wl-toucan);
|
||||
--glow-color: var(--wl-toucan-glow);
|
||||
--hover-border: var(--wl-teal);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<a href="../index.html" class="back-link">← SPACE</a>
|
||||
<h1>WATCHLISTS</h1>
|
||||
<!-- SUBTITLE-START --><div class="subtitle">5 COLLECTIONS · CURATED VIDEO ARCHIVES · 36 PLAYLISTS</div><!-- SUBTITLE-END -->
|
||||
</header>
|
||||
|
||||
<main class="hub-grid">
|
||||
|
||||
<!-- Real data -->
|
||||
<a href="contentaddictionarchive.html" class="panel-card panel-teal">
|
||||
<div class="panel-header">
|
||||
<h2>AND ARCHIVE OF THE END OF MY ADDICTION</h2>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<span class="count">8 PLAYLISTS</span>
|
||||
<p class="description">A record of a long war with content addiction.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<a href="analogfrontier.html" class="panel-card panel-green">
|
||||
<div class="panel-header">
|
||||
<h2>THE ANALOG FRONTIER</h2>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<span class="count">7 PLAYLISTS</span>
|
||||
<p class="description">Early digital artifacts and salvaged broadcast media.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="culturaldecay.html" class="panel-card panel-toucan">
|
||||
<div class="panel-header">
|
||||
<h2>CULTURAL DECAY OBSERVATIONS</h2>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<span class="count">7 PLAYLISTS</span>
|
||||
<p class="description">Documenting the slow collapse of 20th century aesthetics.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="soundscapeanomalies.html" class="panel-card panel-teal">
|
||||
<div class="panel-header">
|
||||
<h2>SOUNDSCAPE ANOMALIES</h2>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<span class="count">8 PLAYLISTS</span>
|
||||
<p class="description">Frequencies that feel like memory. Sound at the edge of perception.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="lastcinema.html" class="panel-card panel-green">
|
||||
<div class="panel-header">
|
||||
<h2>THE LAST CINEMA</h2>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<span class="count">6 PLAYLISTS</span>
|
||||
<p class="description">Short films found in the wreckage of the old world.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user