-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (37 loc) · 719 Bytes
/
style.css
File metadata and controls
38 lines (37 loc) · 719 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
.game-container{
width: 500px;
height: 730px;
position: absolute;
}
.sky{
background-color: lightblue;
width: 500px;
height: 580px;
position: absolute;
}
.ground{
background-color: brown;
width: 500px;
height: 150px;
position: absolute;
top: 580px;
}
.bird{
background-image: url('./flappy-bird.png');
width: 60px;
height: 45px;
position: absolute; /* Add this line */
}
.obstacle{
background-image: url('./flappybird-pipe.png');
width: 60px;
height: 500px;
position: absolute;
}
.topObstacle{
background-image: url('./flappybird-pipe.png');
transform: rotate(180deg);
width: 60px;
height: 500px;
position: absolute;
}