-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (63 loc) · 984 Bytes
/
style.css
File metadata and controls
63 lines (63 loc) · 984 Bytes
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
*{
padding: 0;
margin: 0;
}
#world
{
background-image: url("space.jpg");
width: 1200px;
height: 750px;
}
.player
{
background-image: url("spaceship.png");
width: 50px;
height: 50px;
position: absolute;
}
.enemy
{
background-image: url("alien.png");
width: 50px;
height: 50px;
position: absolute;
}
.missile
{
background-color: yellow;
width: 4px;
height: 4px;
position: absolute;
}
.gameover
{
width: 1200px;
height: 200px;
position: absolute;
top: 300px;
left: 0px;
text-align: center;
color: white;
font-size: 50px;
font-style: italic;
}
#score
{
width: 1200px;
height: 30px;
text-align: center;
color: white;
font-size: 20px;
font-style: normal;
background-color: black;
}
#instructions
{
width: 1200px;
height: 30px;
text-align: center;
color: white;
font-size: 20px;
font-style: normal;
background-color: black;
}