-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (48 loc) · 873 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Arsenal SC", sans-serif;
}
body {
color:#ec50cc;
}
#canvas1 {
position: absolute;
top: 0;
left: 0;
max-width: 100%;
max-height: 100%;
}
.assets {
display:none;
}
#overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #5eebf2;
color: #1f0e8c;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 24px;
text-align: center;
z-index: 10;
}
#overlay button {
padding: 10px 20px;
font-size: 24px;
cursor: pointer;
background-color: #00c49c;
color: white;
border: 2px solid #473ABA;
border-radius: 5px;
}
#overlay button:hover {
background-color: #00a884;
border-color: #1f0e8c;
}