-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (56 loc) · 1008 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
html, body {
background-color: rgb(20, 20, 20);
height: 100vh;
margin: 0px;
overflow: hidden;
padding: 0px;
width: 100vw;
}
#canvas {
cursor: none;
height: 100vh;
width: 100vw;
}
a, h1 {
font-family: 'Rubik', sans-serif;
font-weight: 400;
margin: 0px;
}
a {
backdrop-filter: blur(3px);
background-color: rgba(255, 255, 255, 0.1);
}
a:hover, a:focus, #youtube-link:hover, #youtube-link:focus {
background-color: rgba(255, 255, 255, 0.25);
}
#youtube-link {
bottom: 0px;
left: 145px;
margin: 20px;
transform: none;
top: auto;
}
#inspiration-link {
border-radius: 4px;
bottom: 0px;
color: white;
display: inline-block;
height: 20px;
line-height: 20px;
left: 0px;
margin: 20px 15px;
padding: 10px 15px;
pointer-events: all;
position: absolute;
text-align: center;
text-decoration: none;
z-index: 2;
}
#score {
color: white;
font-family: 'Rubik', sans-serif;
font-size: 18px;
position: absolute;
top: 20px;
left: 20px;
}