blob: d92ab0c4331f7f25729c5364c3c4fc305831b00e (
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
|
html, body {
margin: 0;
padding: 0;
background: var(--background);
color: var(--foreground);
font-family: "JetBrainsMono Nerd Font";
}
* {
cursor: normal;
user-select: none;
}
h1 {
margin: 0;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
white-space: nowrap;
}
|