-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.css
More file actions
132 lines (114 loc) · 1.88 KB
/
Copy pathfooter.css
File metadata and controls
132 lines (114 loc) · 1.88 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');
body {
font-family: 'Oswald', sans-serif;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
}
footer div {
background-color:#E44E7B;
margin: -5px 0px 0px 0px;
padding:0px;
color: #E44E7B;
text-align:center;
}
svg {
width:100%;
}
.arrow {
stroke-width: .3px;
stroke:#242831;
}
.topball {
animation: ball 1.5s ease-in-out;
animation-iteration-count:infinite;
animation-direction: alternate;
animation-delay: 0.3s;
cursor:pointer;
}
.wave {
animation: wave 3s linear;
animation-iteration-count:infinite;
fill: #E44E7B;
}
.drop {
fill: transparent;
animation: drop 5s ease infinite normal;
stroke: #4478e3;
stroke-width:0.5;
opacity:.6;
transform: translateY(80%);
}
.drop1 {
transform-origin: 20px 3px;
}
.drop2 {
animation-delay: 3s;
animation-duration:3s;
transform-origin: 25px 3px;
}
.drop3 {
animation-delay: -2s;
animation-duration:3.4s;
transform-origin: 16px 3px;
}
.gooeff {
filter: url(#goo);
}
#wave2 {
animation-duration:5s;
animation-direction: reverse;
opacity: .6
}
#wave3 {
animation-duration: 7s;
opacity:.3;
}
@keyframes drop {
0% {
transform: translateY(80%);
opacity:.6;
}
80% {
transform: translateY(80%);
opacity:.6;
}
90% {
transform: translateY(10%) ;
opacity:.6;
}
100% {
transform: translateY(0%) scale(1.5);
stroke-width:0.2;
opacity:0;
}
}
@keyframes wave {
to {transform: translateX(-100%);}
}
@keyframes ball {
to {transform: translateY(20%);}
}
.footerLinks {
text-align: center;
}
.footerLinks ul {
padding: 0;
list-style-type: none;
margin: 0;
}
.footerLinks li {
display: inline;
}
.footerLinks a {
color: #ffffff;
text-decoration: none;
font-size: 18px;
letter-spacing: 2px;
}
.footerLinks a:hover {
color: black;
}