- Wire all new PlaylistPirate-generated pages into playlists.html hub - Update subtitle count (4 → 21 playlists, 269 → 1601 tracks) - Add missing back-link to ../index.html with target="_top" - Cards sorted alphabetically; eclectica-experimenti updated Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
235 lines
8.2 KiB
HTML
235 lines
8.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PLAYLISTS | Singular Particular</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Aladin&family=Rambla:wght@400;700&family=Share+Tech+Mono&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--bg-void: #04060b;
|
|
--text-warm: #e8d5b8;
|
|
--text-muted: #7a6f5e;
|
|
--ff-primary: #a855f7;
|
|
--ff-bright: #c084fc;
|
|
--ff-deep: #6d28d9;
|
|
--ff-glow: rgba(168, 85, 247, 0.18);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-void);
|
|
color: var(--text-warm);
|
|
font-family: 'Rambla', sans-serif;
|
|
line-height: 1.5;
|
|
min-height: 100vh;
|
|
padding: 2rem;
|
|
}
|
|
|
|
/* Typography */
|
|
h1 {
|
|
font-family: 'Aladin', cursive;
|
|
color: var(--ff-primary);
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
margin-bottom: 0.5rem;
|
|
text-transform: uppercase;
|
|
font-size: clamp(3rem, 10vw, 6rem);
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.subtitle {
|
|
font-family: 'Rambla', sans-serif;
|
|
color: var(--text-muted);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 3rem;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
/* Grid */
|
|
.playlist-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 1.5rem;
|
|
max-width: 1400px;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.playlist-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.playlist-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|
|
|
|
/* Cards */
|
|
.playlist-card {
|
|
display: block;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
padding: 1.5rem;
|
|
border-left: 2px solid var(--ff-deep);
|
|
background: transparent;
|
|
transition: background 100ms ease, border-color 100ms ease;
|
|
}
|
|
|
|
.playlist-card:hover {
|
|
background: var(--ff-glow);
|
|
border-color: var(--ff-primary);
|
|
}
|
|
|
|
.playlist-name {
|
|
font-family: 'Aladin', cursive;
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text-warm);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.track-count {
|
|
font-family: 'Share Tech Mono', monospace;
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.back-link {
|
|
display: inline-block;
|
|
font-family: 'Share Tech Mono', monospace;
|
|
color: var(--text-muted);
|
|
font-size: 0.85rem;
|
|
text-decoration: none;
|
|
margin-bottom: 2rem;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.back-link:hover {
|
|
color: var(--ff-primary);
|
|
}
|
|
|
|
footer {
|
|
margin-top: 5rem;
|
|
border-top: 1px solid var(--ff-deep);
|
|
padding-top: 2rem;
|
|
font-family: 'Share Tech Mono', monospace;
|
|
color: var(--text-muted);
|
|
font-size: 0.8rem;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<a href="../index.html" target="_top" class="back-link">← back to space</a>
|
|
<h1>PLAYLISTS</h1>
|
|
<!-- SUBTITLE-START -->
|
|
<p class="subtitle">21 playlists • 1601 tracks • Faerie Fire Collection</p>
|
|
<!-- SUBTITLE-END -->
|
|
</header>
|
|
|
|
<main class="playlist-grid">
|
|
<!-- PLAYLIST-CARDS-START -->
|
|
<a href="allthisstuffonthewagon.html" class="playlist-card">
|
|
<div class="playlist-name">All This Stuff On The Wagon</div>
|
|
<div class="track-count">33 tracks</div>
|
|
</a>
|
|
<a href="buckleupbiches.html" class="playlist-card">
|
|
<div class="playlist-name">Buckle Up Biches…</div>
|
|
<div class="track-count">83 tracks</div>
|
|
</a>
|
|
<a href="daydreamsoftime.html" class="playlist-card">
|
|
<div class="playlist-name">Daydreams Of Time</div>
|
|
<div class="track-count">88 tracks</div>
|
|
</a>
|
|
<a href="eclectica-experimenti.html" class="playlist-card">
|
|
<div class="playlist-name">Eclectica Experimenti</div>
|
|
<div class="track-count">85 tracks</div>
|
|
</a>
|
|
<a href="forthosedayswithnothingtodo.html" class="playlist-card">
|
|
<div class="playlist-name">For Those Days With Nothing To Do</div>
|
|
<div class="track-count">85 tracks</div>
|
|
</a>
|
|
<a href="gottalovethisworldofours.html" class="playlist-card">
|
|
<div class="playlist-name">Gotta Love This World Of Ours</div>
|
|
<div class="track-count">99 tracks</div>
|
|
</a>
|
|
<a href="highlysocietal.html" class="playlist-card">
|
|
<div class="playlist-name">Highly Societal</div>
|
|
<div class="track-count">110 tracks</div>
|
|
</a>
|
|
<a href="humilitascoronaveritatis.html" class="playlist-card">
|
|
<div class="playlist-name">Humilitas Corona Veritatis</div>
|
|
<div class="track-count">83 tracks</div>
|
|
</a>
|
|
<a href="karmicconssequinsherein.html" class="playlist-card">
|
|
<div class="playlist-name">Karmic Cons & Sequins Herein</div>
|
|
<div class="track-count">42 tracks</div>
|
|
</a>
|
|
<a href="mellowmallowmulliganagain.html" class="playlist-card">
|
|
<div class="playlist-name">Mellow Mallow Mulligan Again</div>
|
|
<div class="track-count">101 tracks</div>
|
|
</a>
|
|
<a href="oppiestoepinnieskemer.html" class="playlist-card">
|
|
<div class="playlist-name">Oppie Stoep Innie Skemer</div>
|
|
<div class="track-count">89 tracks</div>
|
|
</a>
|
|
<a href="shuffleforanhouronyourown.html" class="playlist-card">
|
|
<div class="playlist-name">Shuffle For An Hour On Your Own</div>
|
|
<div class="track-count">56 tracks</div>
|
|
</a>
|
|
<a href="soosfynwyn.html" class="playlist-card">
|
|
<div class="playlist-name">Soos Fyn Wyn</div>
|
|
<div class="track-count">62 tracks</div>
|
|
</a>
|
|
<a href="staytrippylittlehippy.html" class="playlist-card">
|
|
<div class="playlist-name">Stay Trippy Little Hippy</div>
|
|
<div class="track-count">83 tracks</div>
|
|
</a>
|
|
<a href="theelfladymadeusdoit.html" class="playlist-card">
|
|
<div class="playlist-name">The Elf Lady Made Us Do It</div>
|
|
<div class="track-count">34 tracks</div>
|
|
</a>
|
|
<a href="useaspoonyouheathen.html" class="playlist-card">
|
|
<div class="playlist-name">Use A Spoon You Heathen</div>
|
|
<div class="track-count">65 tracks</div>
|
|
</a>
|
|
<a href="wegonnamakethatbigfireburn.html" class="playlist-card">
|
|
<div class="playlist-name">We Gonna Make That Big Fire Burn</div>
|
|
<div class="track-count">66 tracks</div>
|
|
</a>
|
|
<a href="whichrodeoisthis.html" class="playlist-card">
|
|
<div class="playlist-name">Which Rodeo Is This</div>
|
|
<div class="track-count">41 tracks</div>
|
|
</a>
|
|
<a href="whispersonthewind.html" class="playlist-card">
|
|
<div class="playlist-name">Whispers On The Wind</div>
|
|
<div class="track-count">75 tracks</div>
|
|
</a>
|
|
<a href="workingclassyachtclub.html" class="playlist-card">
|
|
<div class="playlist-name">Working Class Yacht Club</div>
|
|
<div class="track-count">120 tracks</div>
|
|
</a>
|
|
<a href="yingtongiddleipo.html" class="playlist-card">
|
|
<div class="playlist-name">Ying Tong Iddle I Po</div>
|
|
<div class="track-count">101 tracks</div>
|
|
</a>
|
|
<!-- PLAYLIST-CARDS-END -->
|
|
</main>
|
|
|
|
<footer>
|
|
— TERMINAL ACCESS: SINGULAR PARTICULAR SPACE —
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|