-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilos.css
118 lines (107 loc) · 1.92 KB
/
estilos.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
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
118
html,body{
margin:0;
padding:0;
}
*{
list-style:none;
padding:0;
margin:0;
}
.loading{
position: absolute;
left:0;
top:0;
width: 100vw;
height: 100vh;
background: #c3c3c359;
display:none;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
font-size: 40px;
}
body.cargando .loading {
display: inherit;
}
body.cargando header, body.cargando main {
filter:blur(4px);
}
body header, body main {
filter:blur(0);
}
header ul{
display:flex;
flex-direction:row;
}
header ul li{
background:white;
padding:5px;
margin-right:5px;
cursor:pointer;
}
main{
display:flex;
background:antiquewhite;
justify-content:center;
}
main .formulario, main .resultados{
width:400px;
background:#e9ffbd;
padding:10px;
}
main .formulario .group{
padding:10px 10px 20px 10px;
position:relative;
}
main .formulario .group span{
position:absolute;
left:15px;
bottom:0;
background:red;
color:white;
padding:3px;
font-size:11px;
}
main .formulario .group i{
position:absolute;
right:150px;
bottom:0;
background:#156bd2;
border-radius:5px;
color:white;
padding:3px;
font-size:11px;
}
/* Estilo de Carga */
.lds-hourglass {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-hourglass:after {
content: " ";
display: block;
border-radius: 50%;
width: 0;
height: 0;
margin: 8px;
box-sizing: border-box;
border: 32px solid #fff;
border-color: #fff transparent #fff transparent;
animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
0% {
transform: rotate(0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
50% {
transform: rotate(900deg);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
100% {
transform: rotate(1800deg);
}
}