forked from tajulafreen/50Projects-HTML-CSS-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (98 loc) · 1.36 KB
/
style.css
File metadata and controls
117 lines (98 loc) · 1.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
* {
padding: 0;
margin: 0;
overflow: hidden;
text-align: center;
background-color: blue;
}
.game {
top: 40px;
width: 500px;
height: 200px;
border: 1px solid black;
margin: 10% auto;
background-color: aqua;
}
h2 {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
color: rgb(0, 247, 255);
text-shadow: 3px 2px rgb(128, 0, 0);
font-size: 5em;
}
p {
color: white;
font-size: 20px;
text-align: center;
}
#character {
width: 30px;
height: 50px;
background-color: red;
position: relative;
top: 150px;
border-radius: 70%;
}
.animate {
animation: jump 0.3s linear;
}
@keyframes jump {
0% {
top: 150px;
}
30% {
top: 100px;
}
70% {
top: 100px;
}
100% {
top: 150px;
}
}
#block {
background-color: blue;
width: 20px;
height: 20px;
position: relative;
top: 130px;
left: 500px;
animation: block 1s infinite linear;
}
#block2 {
background-color: orange;
width: 20px;
height: 20px;
position: relative;
top: 30px;
left: 500px;
}
.animate1 {
animation: blocke 1.5s infinite linear;
}
@keyframes blocke {
0% {
left: 500px;
}
100% {
left: -20px;
}
}
@keyframes block {
0% {
left: 500px;
}
100% {
left: -20px;
}
}
#co {
margin-bottom: 10px;
font-weight: bold;
}
.animate2 {
animation: pa 1s ease-in-out;
}
.show {
opacity: 0;
}