diff options
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; } |