diff options
author | metamuffin <metamuffin@disroot.org> | 2025-05-17 23:05:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-05-17 23:05:56 +0200 |
commit | 15065f924214e00594bbc77ea9b4c7adf53c9b2a (patch) | |
tree | f4436e6200cb5beae66884695ef1c261f8aa1e32 /src/style.css | |
parent | f2dbd1c247d23628768ec7bc6ed9e32fb23fee1e (diff) | |
download | isda-15065f924214e00594bbc77ea9b4c7adf53c9b2a.tar isda-15065f924214e00594bbc77ea9b4c7adf53c9b2a.tar.bz2 isda-15065f924214e00594bbc77ea9b4c7adf53c9b2a.tar.zst |
flat playlist works
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css index b0baf42..9eb1187 100644 --- a/src/style.css +++ b/src/style.css @@ -1,6 +1,7 @@ :root { background-color: #111111; color: white; + font-family: sans-serif; } .task { @@ -9,6 +10,17 @@ border-radius: 10px; border: 2px solid white; } +.task h3 { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + width: calc(33dvw - 3em); +} +.task img { + width: 128px; + height: 72px; + float: left; +} .task.queue { border-color: #6e6eff; } |