-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (77 loc) · 1.46 KB
/
style.css
File metadata and controls
80 lines (77 loc) · 1.46 KB
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
78
79
80
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
background-color: black;
}
.row{
display:flex;
}
div.row div{
width: 20px;
height: 20px;
}
div.brick {
background-color: blue;
}
div.coin {
background: url('assets/coin.gif');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
div.emtpy {
background-color: black;
}
div.cherry {
background: url('assets/cherries.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
div#pacman {
background: url('assets/pacman.gif');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
width: 20px;
height: 20px;
position: absolute;
}
div#pacman2 {
background: url('assets/ms_pac_man.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
width: 20px;
height: 20px;
position: absolute;
}
div#aqua-ghost{
background: url('assets/aqua-ghost.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
width: 20px;
height: 20px;
position: absolute;
}
span#score, span#score2 {
border: 1px solid white;
width: 60px;
height: 30px;
color: white;
padding: 7px;
text-align: center;
}
div#scoreboard {
display: flex;
margin-top: 20px;
margin-left: 20px;
}
.label {
color: white;
width: 200px;
}