From 78fd988583748a95e1306150634a921a822ab2ae Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Tue, 17 Mar 2026 21:16:54 -0500 Subject: [PATCH] Add play button --- frontend.html | 13 +++++++++++++ main.py | 8 ++++++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/frontend.html b/frontend.html index f018544..de4be57 100644 --- a/frontend.html +++ b/frontend.html @@ -38,6 +38,18 @@ .chevron:hover { color: rgba(255, 255, 255, 0.9); } .chevron.left { left: 10px; } .chevron.right { right: 10px; } + .play-btn { + position: fixed; + bottom: 20px; + right: 20px; + font-size: 48px; + color: rgba(255, 255, 255, 0.7); + cursor: pointer; + text-decoration: none; + transition: color 0.2s, transform 0.2s; + padding: 10px; + } + .play-btn:hover { color: rgba(255, 255, 255, 1); transform: scale(1.1); } @@ -45,6 +57,7 @@ + $play_button