-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathstyle.css
57 lines (49 loc) · 859 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
body {
font-family: arial;
color: white;
text-align: center;
}
.button {
background-color: red;
padding: 5px;
display: inline-block;
vertical-align: top;
transition: background-color 1s;
}
.button:hover {
background-color: #f99;
cursor: pointer;
}
#CanvasContainer {
position: relative;
}
canvas {
position: absolute;
background-color: black;
z-index: -1;
left: 0px;
top: 0px;
width: 800px;
height: 615px;
}
#GameMenu {
opacity: 1;
position: absolute;
background-color: rgba(255, 255, 255, 0.5);
left: 0px;
top: 0px;
width: 800px;
height: 615px;
text-align: center;
transition: opacity 2s;
}
#GameMenu.transparent {
opacity: 0;
}
#GameMenu > div {
position: relative;
top: 200px;
}
#GameMenu > div > .button {
width: 100px;
}