blob: c35dde252e6efebd0600e43be1267aabb6a1be2f (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
* {
box-sizing: border-box;
}
body {
background: black;
color: white;
display: flex;
flex-wrap: nowrap;
justify-content: center;
line-height: 1.5;
font-family: monospace;
font-size: 1rem;
}
main {
width: 80ch;
max-width: 100%;
order: 0;
position: relative;
}
#users {
width: 20ch;
text-align: right;
order: -1;
margin-right: 1em;
overflow: hidden;
}
#right {
width: 50ch;
}
@media (max-width: 150ch) { #right { display: none; } }
@media (max-width: 100ch) { #users { display: none; } }
#users ul {
margin: 0;
list-style: none;
}
#heatmap {
width: 100%;
height: 0;
user-select: none;
}
#heatmap a {
width: .75em;
height: .75em;
display: inline-block;
border-radius: 100%;
margin: .25em;
}
.box {
background: #0c0a0fc0;
box-shadow: 5px 5px 5px #0c0a0fc0;
padding: 1em 1.5ch;
display: inline-block;
margin: .5em;
}
main > *:not(#heatmap) {
margin: 1em;
}
main.dotted > *:not(#heatmap) {
display: none;
}
main.dotted #heatmap {
z-index: 1;
}
pre, p {
margin: 0;
}
a {
color: #b5d0f4;
}
#users a {
color: #5e7ea8;
}
#right > * {
width : 100%;
}
#planet ul {
margin-left: 1ch;
}
.planetuser {
float: right;
opacity: 0.7;
}
|