-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (56 loc) · 865 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
60
#bird {
position: absolute;
top: 70vh;
left: 100px;
z-index: 5;
}
img {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
#bird_line {
position: absolute;
width: 0px;
height: 0px;
top: 50vh;
left: 100px;
}
#ground {
position: absolute;
bottom: 0;
left: 0;
width: 100vw;
height: 30vh;
}
#background {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 70vh;
}
#topdown_arrow {
position: absolute;
width: 40px;
height: 1px;
background-color: black;
}
#leftright_arrow {
position: absolute;
width: 1px;
height: 40px;
background-color: black;
}
#pig {
position: absolute;
top: 70vh;
right: 150px;
}