blob: 3c22f84cab24408ed212c1b2f30d19fbff8ed6f4 (
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(--color0);
color: var(--color15);
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;
}
|