UI transparency

This commit is contained in:
biglyderv 2025-05-13 11:57:41 -04:00
parent c70a955601
commit 062cb99650
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5

View file

@ -4,6 +4,7 @@
--main-1: rgb(13, 12, 17); --main-1: rgb(13, 12, 17);
--main-2: rgb(42, 40, 53); --main-2: rgb(42, 40, 53);
--main-2-bg: rgba(42, 40, 53, 0.658);
--main-3: rgb(223, 201, 176); --main-3: rgb(223, 201, 176);
--main-4: rgb(248, 246, 224); --main-4: rgb(248, 246, 224);
--width: min(800px, calc(100vw - 80px)); --width: min(800px, calc(100vw - 80px));
@ -15,12 +16,13 @@ body {
background-image: url('img/space.svg'); background-image: url('img/space.svg');
background-position: center; background-position: center;
background-size: cover; background-size: cover;
background-attachment: fixed;
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
.main { .main {
background-color: var(--main-2); background-color: var(--main-2-bg);
padding: 20px; padding: 20px;
width: var(--width); width: var(--width);
margin: auto; margin: auto;
@ -85,7 +87,8 @@ table {
.item-a, .item-a,
.link { .link {
font-weight: bold; font-weight: bold;
text-decoration: underline; font-style: italic;
text-decoration: none;
color: inherit; color: inherit;
} }