-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
86 lines (84 loc) · 1.55 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
body {
margin: 0px;
padding: 0px;
display: flex;
justify-content: end;
align-items: end;
overflow: hidden;
width: 100%;
height: 100%;
font-family: "Open Sans", sans-serif;
background-color: rgb(241, 241, 241);
}
body .footer {
overflow: hidden;
width: 100%;
z-index: 1;
--footer-background:#ED5565;
display: flex;
justify-content: end;
align-items: end;
position: relative;
height: 50%;
}
.cube{
width: 100%;
height: 20px;
position: absolute;
top:125%;
filter: url("#blob");
background: var(--footer-background);
}
body .footer .bubbles {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 40%;
filter: url("#blob");
}
body .footer .bubbles .bubble {
position: absolute;
left: var(--position);
background: var(--footer-background);
border-radius: 100%;
animation: bubble-size var(--time) ease-in infinite var(--delay),
bubble-move var(--time) ease-in infinite var(--delay);
transform: translate(-50%, 100%);
}
body .footer .content {
height: 50%;
width: 100%;
z-index: 2;
display: flex;
justify-content:center;
align-items: center;
background: var(--footer-background);
}
body .footer .content .icons{
width: 200px;
display: flex;
justify-content:space-evenly;
align-items: center;
}
.icon1:hover,.icon2:hover,.icon3:hover{
opacity: 0.6;
}
@keyframes bubble-size {
0%, 75% {
width: var(--size);
height: var(--size);
}
100% {
width: 0rem;
height: 0rem;
}
}
@keyframes bubble-move {
0% {
bottom: -40px;
}
100% {
bottom: var(--distance);
}
}