blob: 16ca7f0ddba38b89c0e058289338eee53716a9e2 (
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
|
@font-face {
font-family: vt323;
src: url("./f.ttf");
}
#board-container {
font-size: 80px;
line-height: 48px;
margin: 2vw;
position: relative;
top: 0px;
left 0px;
}
#cursor-frame {
position: absolute;
top: 0px;
left: 0px;
}
.cent {
width: 80vw;
margin: 0 auto;
}
body {
font-family: vt323, monospace;
font-size: 20pt;
background-color: black;
color: white;
margin: 0;
}
.unsel {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.cursor {
font-size: 20pt;
padding: 0;
pointer-events: none;
z-index: 1;
}
.cursor * {
margin: 0 0;
}
.cursor-name {
background-color: #000000c0;
padding: 0 0.1em;
line-height: initial;
}
#rlist a, #rlist span {
text-decoration: none;
color: #dfdfff;
background-color: #3c3c3c;
}
#miscinfo {
flex-grow: 1;
}
#statusline {
display: flex;
position: sticky;
background-color: black;
width: 96vw;
padding: 0 2vw;
bottom: 0px;
left: 0px;
}
#statusline * {
margin: 0.5em 2em 0 0;
}
span, h1, h4 {
margin: 0 auto;
}
h4 { margin-left: 1em; }
a :visited {
color: inherit;
}
|