aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
blob: b0baf422ace76827116581944e76736037e0d6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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;
}