-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (51 loc) · 891 Bytes
/
style.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
html, body {
overflow: hidden;
height: 100%;
width:100%;
margin:0;
}
#gamescreen {
position:relative;
width:100%;
height:100%;
}
#sky {
position:absolute;
top:0;
background-image:url("assets/sky.png");
background-color:#4ec0ca;
background-repeat:repeat-x;
background-position:0px 100%;
width:100%;
height:80%;
}
#flyarea {
position:absolute;
bottom:0;
width:100%;
height:420px;
}
#ceiling {
position:absolute;
background-image:url("assets/ceiling.png");
width:100%;
height:16px;
}
#land {
position:absolute;
bottom:0;
background-image:url("assets/land.png");
background-repeat:repeat-x;
background-color:#ded895;
background-position:0px 0px;
width:100%;
height:20%;
}
#bird {
position:absolute;
left:60px;
bottom:200px;
background-image:url("assets/bird.png");
width:34px;
height:24px;
}