diff --git a/index.html b/index.html index 149a183..4d29ea6 100644 --- a/index.html +++ b/index.html @@ -22,6 +22,19 @@ bottom: 0; width: 100%; } + #header { + position: absolute; + top: 10px; + left: 50%; + transform: translateX(-50%); + z-index: 1000; + } + #header img { + width: 100px; + height: 100px; + border-radius: 50%; + object-fit: cover; + } #controls { position: absolute; top: 10px; @@ -30,11 +43,37 @@ padding: 16px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + z-index: 1000; + max-height: 80%; + overflow-y: auto; + } + #controls.collapsed { + display: none; + } + #toggle-controls { + position: absolute; + top: 10px; + right: 10px; + background: white; + padding: 8px; + border-radius: 50%; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + z-index: 1000; + } + @media (max-width: 768px) { + #controls { + width: 80%; + left: 50%; + transform: translateX(-50%); + } }
+
+