diff options
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 { |