-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (58 loc) · 1.24 KB
/
Copy pathstyles.css
File metadata and controls
66 lines (58 loc) · 1.24 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
/* Importar la fuente de Google Fonts */
@import url("//fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,800&display=swap");
/* Estilos comunes para todas las pantallas */
body {
background-color: #fe6601;
text-align: center;
font-family: "Montserrat", sans-serif;
font-weight: 800;
overflow: hidden; /* Para que las huellas no se desborden */
}
.container {
position: relative; /* Para que las huellas sean absolutas con respecto a este contenedor */
display: grid;
place-content: center;
height: 100vh;
background-image: url('src/HUELLAS_1.svg');
}
.cargando {
width: 160px;
height: 30px;
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: space-between;
margin: 0 auto;
}
.texto-cargando {
padding-top: 20px;
font-size: 2.5em;
color: #000000;
}
.pelotas {
width: 40px;
height: 40px;
background-color: #000000;
animation: salto 0.5s alternate infinite;
border-radius: 50%;
}
.pelotas:nth-child(2) {
animation-delay: 0.18s;
}
.pelotas:nth-child(3) {
animation-delay: 0.37s;
}
@keyframes salto {
from {
transform: scaleX(1.25);
}
to {
transform: translateY(-50px) scaleX(1);
}
}
.ktm{
position: fixed;
bottom: 250px;
left: 50%;
transform: translateX(-50%);
}