blob: 58da34fa1eec2491d691dcd129c6d2fc57656599 (
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
|
@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, #rlist span {
text-decoration: none;
color: #dfdfff;
background-color: #3c3c3c;
}
span, h1, h4 {
margin: 0 auto;
}
h4 { margin-left: 1em; }
a :visited {
color: inherit;
}
|