From: 2weiEmu Date: Mon, 15 Jun 2026 16:09:08 +0000 (+0200) Subject: updated: slowly working on styling X-Git-Url: https://git.saalbach.dev/?a=commitdiff_plain;h=d346c34b3f2b6467511273749f41d7644e2a58be;p=binbsis50-sm.git updated: slowly working on styling --- diff --git a/public/css/index.css b/public/css/index.css index 2ee1b13..df176b8 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -1,18 +1,44 @@ :root { - font-family: sans-serif; + font-family: "Sansita", sans-serif; + + --darker-background: #251E1E; + --lighter-background: #373333; + --green-foreground: #DDEFD7; + --green-background: #B1C0AB; +} + +body { + background-color: var(--darker-background); + margin: 0 auto 0 auto; + width: 50vw; +} + +h1, a { + color: var(--green-foreground); } -button { - padding: 5px; +input { + background-color: var(--lighter-background); border: none; - border-radius: 6px; - background-color: #bcdee0; + padding: 12px; + border-radius: 15px; + color: var(--green-background); +} + +input:focus { + border: none; + outline: none; +} + +#songFilterInputs { + display: flex; } -button:hover { - background-color: #4be8f2; +#songFilterInputs * { + margin: 10px; } + #innerSongList, #innerSongFileList { overflow-y: scroll; height: 50vh; @@ -24,12 +50,6 @@ button:hover { .songElement { display: flex; - margin: 10px; - max-width: 40vw; - border-radius: 5px; - box-shadow: grey 3px 3px 2px; - border: 1px solid grey; - padding: 4px; * { margin: auto 10px auto 10px; @@ -48,12 +68,6 @@ button:hover { font-size: 12px; } - .songElementCheck { - padding: 0; - font-size: 2.25rem; - line-height: 2.25rem; - - } } .songFileElement { diff --git a/public/index.html b/public/index.html index 224c9e1..288b9ec 100644 --- a/public/index.html +++ b/public/index.html @@ -3,6 +3,9 @@ + + + @@ -10,21 +13,19 @@ - Room Management +

See Rooms →

-

Song List

+

Songs

- - + + In DB Not In DB +
-
- -
diff --git a/public/rooms.html b/public/rooms.html index 9084726..fd2d994 100644 --- a/public/rooms.html +++ b/public/rooms.html @@ -1,6 +1,10 @@ + + + + diff --git a/songmanager b/songmanager index f75e033..7551edf 100755 Binary files a/songmanager and b/songmanager differ