-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (60 loc) · 957 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
body{
margin: 0;
background-color: black;
}
.hidden{
display: none !important;
}
.winMessage{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
z-index: 100;
height: 100vh;
width: 100vw;
}
.winMessage h1{
color: white;
font-size: 100px;
text-align: center;
}
.winMessage button{
color: white;
background: blue;
padding: 20px;
border: none;
opacity: 1 !important;
}
.buttons button{
padding: 10px 10px;
opacity: 0.3;
height: 110px;
width: 110px;
border-radius: 50%;
z-index: 10;
}
.ArrowLeft{
position: fixed;
bottom:80px;
left:0px;
}
.ArrowRight{
position: fixed;
bottom:80px;
left:200px;
}
.ArrowUp{
position: fixed;
bottom:170px;
left:100px;
}
.ArrowDown{
position: fixed;
bottom:0px;
left:100px;
}
button i{
font-size: 3rem;
}