aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
blob: 9eb1187f82c4e1b5fa6046fd9554e65fcd1ec197 (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
64
65
66
67
68
69
70
71
72
73
74
75
:root {
    background-color: #111111;
    color: white;
    font-family: sans-serif;
}

.task {
    margin: 2px;
    padding: 2px;
    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;
}
.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;
}