-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (73 loc) · 1.22 KB
/
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
body {
background: #0f0f0f;
overflow: hidden;
margin: 0;
font-family: "Permanent Marker", cursive;
background-color: black;
background-image: url("https://cdn.glitch.com/a27c8df8-5b3c-45dd-8846-fe2932f8da23%2F52345.jpg?v=1572291391797//");
}
.yellow{
color: #ffcc00
}
h1 {
position: fixed;
text-align: center;
font-size: 47px;
left: 0;
right: 0;
color: white;
}
canvas {
background: transparent;
}
a {
color: white;
text-decoration: none;
font-family: verdana;
}
p {
color: white;
text-decoration: none;
font-family: verdana;
}
#mute{
position: absolute;
right: 3vh;
top: 3vh;
font-size: 30px
}
#btns{
position: absolute;
height: 95vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column
}
.btn{
height: 50px;
width: 50px;
border: none;
background: transparent;
color: white;
font-size: 50px;
transition: color 300ms
}
.btn:hover{
cursor: pointer;
color: #ff7b1c;
transition: color 300ms
}
footer{
font-size: 15px;
font-family: 'Quicksand', sans-serif;
padding: 5px;
color: white;
position: absolute;
bottom: -5vh;
color: white;
text-align: center;
width: 100%;
background: rgba(15, 15, 15, 0.7)
}