-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINVERSION.css
More file actions
53 lines (43 loc) · 988 Bytes
/
INVERSION.css
File metadata and controls
53 lines (43 loc) · 988 Bytes
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
social-icons {
display: flex;
justify-content: center;
list-style: none;
}
social-icons li {
margin: 0 10px;
}
social-icons li a {
font-size: 30px;
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: white;
position: relative;
transition: 0.5s ease;
}
social-icons li a :hover {
background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
font-size: 40px;
}
social-icons li a ::before {
content: "";
position: absolute;
z-index: -1;
width: 70px;
height: 70px;
border-radius: 50%;
transform: scale(1);
transition: 0.5s ease-in-out;
background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
}
social-icons li a :hover::before {
transform: scale(0);
}