-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (64 loc) · 992 Bytes
/
style.css
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
html,
body {
background: #000;
color: #fff;
width: 100dvw;
height: 100dvh;
margin: 0;
padding: 0;
}
#app {
display: grid;
place-items: center;
width: 100dvw;
height: 100dvh;
}
body {
display: grid;
place-items: center;
}
canvas {
height: auto;
width: 100%;
aspect-ratio: 16 / 9;
image-rendering: pixelated;
}
@media screen and (min-aspect-ratio: 16 / 9) {
canvas {
height: 100%;
width: auto;
}
}
.overlay {
position: fixed;
inset: 0;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.25));
}
.play {
margin: 5vh 10vh;
}
.play > circle {
fill: none;
stroke: #fff;
}
.play > path {
fill: #fff;
}
#user-gesture {
background: url("main-menu-bg.png");
background-size: cover;
background-position: right;
}
.logo {
width: 40vh;
height: 40vh;
}
.text {
font-size: 60px;
border: 2px solid white;
padding: 5px;
width: 500px;
text-align: center;
margin: 20vh 0;
cursor: pointer;
}