-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 705 Bytes
/
style.css
File metadata and controls
45 lines (40 loc) · 705 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
* {
padding: 0;
margin: 0;
}
#game {
width: 500px;
height: 200px;
border: 1px solid black;
background-color: antiquewhite;
}
#character {
width: 20px;
height: 50px;
background-color: rgb(240, 32, 32);
position: relative;
top:150px;
}
.animate {
animation: jump 500ms ;
}
#block {
width: 20px;
height: 20px;
background-color: rgb(93, 61, 233);
position: relative;
top:130px;
left: 480px;
border-radius: 50%;
animation: block 1.5s infinite linear;
}
@keyframes jump {
0% {top:150px;}
30% {top:100px;}
70% {top:100px;}
100% {top:150px;}
}
@keyframes block {
0% {left:480px;}
100% {left:-40px;}
}