-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 765 Bytes
/
style.css
File metadata and controls
44 lines (38 loc) · 765 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
body {
background-color: blue;
position: relative;
}
#changing-text {
font-size: 45px;
font-family: Arial, sans-serif;
text-align: center;
margin-top: 100px;
}
@keyframes changeColor {
0% { color: red; }
25% { color: blue; }
50% { color: green; }
75% { color: orange; }
100% { color: purple; }
}
#changing-text.animate {
animation: changeColor 2.5s infinite;
}
#text {
color: white;
font-size: 24px;
text-align: left;
margin-top: 0px;
}
#bonhomme {
position: absolute;
top: 440px; /* changed 150% to flat pixels value */
left: 10px;
color: white;
}
#obstacle {
position: absolute;
top: 450px; /* changed 150% to flat pixels value */
left: 10px;
color: white;
}