-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (46 loc) · 876 Bytes
/
style.css
File metadata and controls
51 lines (46 loc) · 876 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
*{
margin: 0;
padding: 0;
}
#game{
border: 4px solid black;
width: 400px;
height: 500px;
overflow: hidden;
}
#block{
background-color: black;
width: 50px;
height: 500px;
position: relative;
left: 400px;
animation-name: block;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes block{
0%{left: 400px;}
100%{left: -50px;}
}
#hole{
background-color: white;
width: 50px;
height: 100px;
position: relative;
left: 400px;
top: -450px;
animation-name: block;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
#character{
position: absolute;
background-color: red;
width: 20px;
height: 20px;
top: 150px;
left: 25px;
border-radius: 50px;
}