blob: a4b49a365e77dc6c5de53dd354c98866a4b8a836 (
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
|
@font-face {
font-family: "Iosevka Comfy";
src: url("assets/iosevka-comfy-regular.ttf") format("truetype");
}
html, body {
overflow: hidden;
margin: 0 !important;
padding: 0 !important;
height: 100%;
width: 100%;
}
body {
font-family: "Iosevka Comfy";
font-weight: bold;
background-color: #050505;
color: white;
user-select: none;
image-rendering: pixelated;
}
#lcolonq-title {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
text-align: center;
font-size: 20vw;
}
#lcolonq-subtitle {
font-size: 5vw;
}
#lcolonq-canvas {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
height: 100%;
}
button {
color: red;
}
|