-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
47 lines (42 loc) · 816 Bytes
/
styles.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
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
#gameContainer {
width: 500px;
height: 500px;
border: 2px solid #000;
position: relative;
background-color: #fff;
margin-bottom: 20px;
overflow: hidden; /* Ensure the character doesn't go outside the container */
}
#character {
width: 50px;
height: 50px;
position: absolute;
top: 225px;
left: 225px;
}
#collectible {
width: 30px;
height: 30px;
position: absolute;
top: 100px;
left: 100px;
}
#score {
font-size: 24px;
margin-bottom: 10px;
}
#restartButton {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}