blob: 5e1ed0b4f2aea4000ec1b18d4ef6c7427314721b (
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
76
77
78
79
80
81
|
: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;
background-image: linear-gradient(#fff3);
background-repeat: no-repeat;
background-size: 0%;
}
.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;
}
.worker.idle {
border-color: #6e6eff;
}
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;
}
|