-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (42 loc) · 759 Bytes
/
Copy pathstyles.css
File metadata and controls
51 lines (42 loc) · 759 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
39
40
41
42
43
44
45
46
47
48
49
50
51
#bg {
height: 50vh;
width: 100vw;
background-color: #666666;
border-color: blueviolet;
}
#jumpy {
height: 100px;
width: 20px;
background-color: blue;
position: relative;
top: 370px;
}
.anim {
animation: jump_keyframe 500ms;
}
#object {
top: 270px;
height: 100px;
width: 50px;
position: relative;
background-color: red;
}
#score_board {
position: absolute;
text-align: center;
height: 5vh;
width: 10vw;
top: center;
left: center;
background-color: coral;
}
@keyframes jump_keyframe {
0% { top: 370px; }
50% { top: 105px;}
100% { top: 370px; }
}
@keyframes object_keyframe {
0% { left: 100vw;}
50% { left: 50vw;}
100% { left: 0vw;}
}