From c18f6d99dacf12bbd420204485d38e802f300a8e Mon Sep 17 00:00:00 2001 From: heqnx Date: Sat, 5 Jul 2025 16:24:07 +0300 Subject: added a box around the controls --- templates/var/www/html/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/var/www/html/style.css b/templates/var/www/html/style.css index 995bddd..95698ed 100644 --- a/templates/var/www/html/style.css +++ b/templates/var/www/html/style.css @@ -1,5 +1,6 @@ :root { --color-black: #000000; + --color-black-transparency08: rgba(0, 0, 0, 0.8); --color-dark-cyan: #008080; --color-light-gray: #C0C0C0; --color-dark-gray: #808080; @@ -74,6 +75,11 @@ body { gap: 8px; max-width: 100%; width: 320px; + padding: 32px; + border: 1px solid var(--color-dark-gray); + background-color: var(--color-black-transparency08); + position: relative; + z-index: 0; } .btn { @@ -87,6 +93,7 @@ body { display: inline-block; cursor: pointer; user-select: none; + position: relative; } .btn::before { -- cgit v1.2.3