blob: cf9f8a6c32812663a56cf22dbbdbd77983d4bdfa (
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
|
@font-face {
font-family: vt323;
src: url("./f.ttf");
}
#board-container {
font-size: 36px;
line-height: 22px;
}
.cent {
width: 80vmin;
margin: 0 auto;
}
body {
font-family: vt323, monospace;
background-color: black;
color: white;
}
.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: 16pt;
pointer-events: none;
}
.cursor * {
margin: 0 0;
}
.cursor-name {
background-color: #000000c0;
padding: 0.1em 0.1em;
}
#rlist a {
text-decoration: none;
line-height: 0.4;
color: #dfdfff;
background-color: #3c3c3c;
}
a :visited {
color: inherit;
}
|