-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (65 loc) · 982 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
.container{
text-align: center;
}
canvas{
width: 1000px;
height: 800px;
border: solid;
border-color: red;
background-image: url("assets/woodfloor.png");
}
img{
width: 25px;
height: 25px
}
#ghost{
width: 25px;
height: 25px
}
.title{
display:flex;
flex-direction: column;
align-items: center;
color: white;
}
#instructions{
text-align: center;
margin-left:200px;
margin-right:200px;
color: white;
}
body{
background-color: black;
}
#win{
color: white;
}
#lose{
color:white;
}
.ghostbuster{
width: 500px;
height: 300px;
}.win{
display:flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-top: 50px;
color:white;
}
.lose{
display:flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-top: 50px;
color:white;
}
.died{
width: 400px;
height: 400px;
}
.hidden{
display: none
}