-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (80 loc) · 1.72 KB
/
styles.css
File metadata and controls
92 lines (80 loc) · 1.72 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
body {
background-image: url(imagen/leo.jpg); /* Corregido */
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
height: 100vh;
margin: 0;
padding: 0;
}
.wrapper{
position: absolute;
left: 25%;
top: 50%;
transform: translate(-50%,-50%);
}
h1 {
color: #fff;
font-family: poppins;
font-weight: bold;
text-transform: capitalize;
font-size: 3em;
margin: 25px 0;
letter-spacing: .2rem;
overflow: hidden;
}
.content span:nth-child(1){
position: relative;
animation: animate 2s;
animation-fill-mode: backwards;
}
.content span:nth-child(2){
position: relative;
animation: animate 2s;
animation-delay: 0.25s;
animation-fill-mode: backwards;
}
.content span:nth-child(3){
position: relative;
animation: animate 2s;
animation-delay: 0.5s;
animation-fill-mode: backwards;
}
.content span:nth-child(4){
position: relative;
animation: animate 2s;
animation-delay: 0.75s;
animation-fill-mode: backwards;
}
.content span:nth-child(5){
position: relative;
animation: animate 2s;
animation-delay: 1s;
animation-fill-mode: backwards;
}
.content span:nth-child(6){
position: relative;
animation: animate 2s;
animation-delay: 1.25s;
animation-fill-mode: backwards;
}
.content span:nth-child(7){
position: relative;
animation: animate 2s;
animation-delay: 1.5s;
animation-fill-mode: backwards;
}
.content span:nth-child(8){
position: relative;
animation: animate 2s;
animation-delay: 1.75s;
animation-fill-mode: backwards;
}
@keyframes animate {
0% {
bottom: -100px;
}
100% {
bottom: 0;
}
}