From 6ba0f229bee35850f77964055acd604522cbfe0d Mon Sep 17 00:00:00 2001 From: j Date: Sun, 1 Feb 2026 22:12:11 +0100 Subject: [PATCH] update player --- player/html/index.html | 124 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 115 insertions(+), 9 deletions(-) diff --git a/player/html/index.html b/player/html/index.html index ecd371b..05cdcde 100644 --- a/player/html/index.html +++ b/player/html/index.html @@ -17,6 +17,29 @@ height: 100%; font-family: Menlo, sans-serif; } + #click-to-play { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + + background: #000000; + color: white; + display: flex; + justify-content: center; + z-index: 10; + cursor: pointer; + } + #click-to-play .text { + font-size: 16px; + width: 80%; + margin: auto; + text-align: center; + } + /* Full page container */ .page { @@ -55,6 +78,9 @@ cursor: pointer; font-size: 18px; transition: background 0.2s ease, transform 0.2s ease; + &.current { + background: #909090; + } } .box:hover { @@ -106,6 +132,7 @@