blob: acdd9c05570dfd13a50fdf5c8f045b989ce75fc0 (
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
|
@font-face {
font-family: vt323;
src: url("f.ttf");
}
#board-container {
font-size: 36px;
line-height: 22px;
}
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;
}
|