blob: c018bedfc41410b4899685b6e2dc9432396bfa65 (
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
|
.outermost {
background-color: #251f1f;
display: flex;
flex-direction: row;
height: 98vh;
width: 99vw;
justify-content: center;
position: relative;
}
.stats-container {
background-color: white;
padding: 1rem;
width: 80vw;
border-radius: 8px;
}
.stats-content {
font-size: 1.25em;
}
.stats-server-status-container {
display: flex;
flex-direction: row;
}
.stats-server-status-item {
margin-left: 0.25rem;
padding: 0px 5px;
border-radius: 3px;
width: 8rem;
text-align: center;
}
.stats-server-status-0 {
/* not busy */
border: 3px green solid;
}
.stats-server-status-1 {
/* busy */
border: 3px #ffcc00 solid;
}
.stats-server-status-2 {
/* very busy */
border: 3px red solid;
}
.stats-connected-users {
max-height: 70vh;
overflow-y: auto;
}
|