From a1a5463a2f37ee202ede01cea840d9547d9f7ccc Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 7 Apr 2026 10:44:24 -0400 Subject: [PATCH] Add streaming service links to embed player footer Spotify, Apple Music, YouTube Music, GitHub links in footer bar. Co-Authored-By: Claude Opus 4.6 (1M context) --- site/embed.html | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/site/embed.html b/site/embed.html index 9e7fe6e..1f99761 100644 --- a/site/embed.html +++ b/site/embed.html @@ -212,7 +212,10 @@ body { /* ── Footer ──────────────────────────────────────── */ .footer { padding: 8px 14px; - text-align: center; + display: flex; + align-items: center; + justify-content: center; + gap: 12px; border-top: 1px solid #1a1a1a; background: #0d0d0d; } @@ -221,9 +224,12 @@ body { font-size: 11px; color: #555; text-decoration: none; + transition: color 0.15s; } .footer a:hover { color: #c8a846; } +.footer .sep { color: #333; font-size: 10px; } + /* ── Responsive ──────────────────────────────────── */ @media (max-width: 320px) { .progress-wrap { display: none; } @@ -265,7 +271,13 @@ body {