diff options
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..b0baf42 --- /dev/null +++ b/src/style.css @@ -0,0 +1,63 @@ +:root { + background-color: #111111; + color: white; +} + +.task { + margin: 2px; + padding: 2px; + border-radius: 10px; + border: 2px solid white; +} +.task.queue { + border-color: #6e6eff; +} +.task.loading { + border-color: #ffc36e; +} +.task.complete { + border-color: #6eff70; +} + +.worker { + margin: 2px; + padding: 2px; + border-radius: 10px; + border: 2px solid white; +} +.worker.accepting { + border-color: #6eff70; +} +.worker.busy { + border-color: #ffc36e; +} + +section.tasks { + display: flex; + width: 100%; +} +section h2 { + text-align: center; + margin-bottom: 5px; +} +section.tasks .count { + margin-top: 5px; + text-align: center; + color: #9b9b9b; +} +section.tasks > div { + flex: 1; +} + +ul { + list-style: none; +} + +span.key { + color: #9b9b9b; + font-size: small; +} + +h3 { + margin: 0px; +} |