-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
77 lines (63 loc) · 1.07 KB
/
main.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
71
72
73
74
75
76
77
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Press Start 2P", cursive;
}
body {
background-color: blue;
}
.app {
display: grid;
grid-template-columns: 644px 1fr;
gap: 10px;
}
.grid {
width: 604px;
height: 604px;
margin: 20px;
border: 2px solid white;
display: grid;
grid-template-columns: repeat(auto-fit, 40px);
grid-auto-rows: 40px;
}
.grid > div {
width: 40px;
height: 40px;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
}
.spaceship {
background-image: url("./images/spaceship.png");
}
.laser {
background-image: url("./images/projectile.png");
}
.alien {
background-image: url("./images/alien.png");
}
.hit {
background-image: url("./images/explosion.png");
}
.message {
position: absolute;
top: 200px;
left: 200px;
width: 200px;
height: 100px;
background-color: white;
opacity: 85%;
}
.message h1 {
color: blue;
text-align: center;
line-height: 50px;
}
.scoreboard {
margin: 20px;
color: white;
}
.scoreboard > * {
margin: 20px;
}