-
Notifications
You must be signed in to change notification settings - Fork 12
/
footer1.css
50 lines (43 loc) · 1007 Bytes
/
footer1.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
footer{
font-family: 'Permanent Marker', cursive;
font-family: 'Amaranth', sans-serif;
font-family: 'Sorts Mill Goudy', serif;
background: #282828;
background: linear-gradient(-45deg, #A52A2A, #CD853F, #23a6d5, #A0522D) ;
background-size: 400% 400%;
animation: Gradient 15s ease infinite;
}
@-webkit-keyframes Gradient {
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0% 50%;
}
}
.media{
position: absolute;
left: 50%;
margin-top:70px;
transform: translate(-53%, -50%);
}
.media li{
list-style: none;
margin: 15px 40px;
display: inline-block;
font-size: 10px;
padding: 20px 25px;
color: #fff;
border: 1px solid #fff;
border-radius: 50%;
transition: .5s;
overflow: hidden;
}
.media li:hover{
color: #292929;
border: 1px solid #292929;
transition: .5s;
}