-
Notifications
You must be signed in to change notification settings - Fork 0
/
3lei.css
84 lines (78 loc) · 1.31 KB
/
3lei.css
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
body{
background-color: #74cec5;
}
main h1{
color: white;
text-align: center;
font-size: 45px;
font-family: 'Special Elite', cursive;
}
main p{
color: white;
text-align: center;
font-size: 30px;
font-family: 'Special Elite', cursive;
padding-left: 10px;
padding-right: 10px;
}
#bloco{
position: absolute;
margin-left: 1000px;
width: 200px;
animation-duration: 2s;
animation-name: move;
animation-iteration-count: infinite;
}
@keyframes move{
from {
margin-left: 50%;
}
to {
margin-left: 55%;
}
}
#goku{
height: 300px;
margin-left: 0px;
transform: rotateY(180deg);
position: absolute;
}
#luz{
margin-left: 200px;
height: 200px;
margin-top: 0px;
animation-duration: 2s;
animation-name: newton;
position: absolute;
animation-iteration-count: infinite;
}
@keyframes newton{
from {
margin-left: 10%;
}
to {
margin-left: 50%;
}
}
#foguete{
margin-bottom: 0%;
height: 200px;
margin-top: 0px;
bottom: 0%;
margin-left: 90%;
position: absolute;
animation-duration: 4s;
animation-name: fog;
animation-iteration-count: infinite;
}
@keyframes fog{
from {
margin-bottom: 0%;
}
to {
margin-bottom: 100%;
}
}
#imagtext h1{
width: 120px;
}