-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlooks.css
69 lines (54 loc) · 1.06 KB
/
looks.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
body, html {
margin: 0;
padding: 0;
overflow: hidden;
height: 100dvh;
background-color: rgb(6, 5, 27);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.isBullet {
width: 16px;
height: 16px;
position: absolute;
background-color: aquamarine;
border-radius: 100%;
box-shadow: 0 0 60px 10px aqua;
}
.enemyShip {
width: 50px;
height: 50px;
background-image: url('img/enemy_spaceship.png');
background-size: cover;
position: absolute;
}
#playButton {
width: 120px;
height: 40px;
margin-bottom: 6px;
font-size: medium;
border-radius: 8%;
}
#spaceship {
width: 60px;
height: 60px;
background-image: url('img/spaceship.png');
background-size: cover;
position: absolute;
bottom: 10%;
}
#gameScore {
color: white;
font-family: Arial, Helvetica, sans-serif;
}
#gameBoundary {
width: 500px;
height: 800px;
border: 2px solid rgb(255, 255, 255);
background-image: url('img/space.jpg');
background-size: cover;
background-repeat: repeat-y;
position: relative;
}