diff options
author | heqnx <root@heqnx.com> | 2025-07-05 16:24:07 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-07-05 16:24:07 +0300 |
commit | c18f6d99dacf12bbd420204485d38e802f300a8e (patch) | |
tree | 5f7cec951a7110a109ace9b73036bf7c3525c353 /templates | |
parent | 93e0c2614f4b6456f2bbcfb5122a2a3068c551fc (diff) | |
download | ansible-icecast2-c18f6d99dacf12bbd420204485d38e802f300a8e.tar.gz ansible-icecast2-c18f6d99dacf12bbd420204485d38e802f300a8e.zip |
added a box around the controls
Diffstat (limited to 'templates')
-rw-r--r-- | templates/var/www/html/style.css | 7 |
1 files changed, 7 insertions, 0 deletions
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 { |