-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel_3.css
More file actions
78 lines (68 loc) · 1.4 KB
/
level_3.css
File metadata and controls
78 lines (68 loc) · 1.4 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
p {
font-weight: 800;
font-size: 20px;
}
body {
background-color: lightskyblue;
font-family: 'Courier New', Courier, monospace;
user-select: none;
}
#exit {
position: absolute;
top: 0px;
left: 720px;
padding: 5px 10px;
background-color: darkgreen;
color: white;
font-size: large;
border: none;
cursor: pointer;
}
#textTitle {
color: red;
font-size: 20px;
}
#block1 {
position: absolute;
top: 100px;
left: 30px;
animation: platformLoop1 8s linear 500ms infinite both;
}
#block2 {
position: absolute;
top: 200px;
left: 30px;
animation: platformLoop1 10s linear 400ms infinite both;
}
#block3 {
position: absolute;
top: 300px;
left: 30px;
animation: platformLoop1 12s linear 300ms infinite both;
}
#block4 {
position: absolute;
top: 400px;
left: 30px;
animation: platformLoop1 6s linear 200ms infinite both;
}
#block5 {
position: absolute;
top: 500px;
left: 30px;
animation: platformLoop1 8s linear 100ms infinite both;
}
#block6 {
position: absolute;
top: 600px;
left: 30px;
animation: platformLoop1 10s linear 0s infinite both;
}
@keyframes platformLoop1
{
0% { left: 720px; }
25% { left: 1400px; }
50% { left: 720px; }
75% { left: 50px; }
100% { left: 720px; }
}