-
Notifications
You must be signed in to change notification settings - Fork 9
/
Social_Icon1.css
68 lines (67 loc) · 1.32 KB
/
Social_Icon1.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
*{
margin: 0;
padding: 0;
}
body{
background: #f1f1f1;
}
h1{
font-family: sans-serif;
font-weight: normal;
font-size: 25px;
letter-spacing: 4px;
padding: 200px 0 100px;
color: #007cc4;
text-align: center;
}
.Social-media{
display: flex;
justify-content: center;
}
a{
display: flex;
background: #fff;
height: 45px;
width: 45px;
margin: 0 15px;
border-radius: 8px;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 6px 6px 10px -1px rgba(0,124,196,0.15),
-6px -6px 10px -1px rgba(255,255,255,0.7);
border: 1px solid rgba(0, 124, 196, 0);
transition: transform 0.5s
}
a i{
font-size: 50px
color:#777;
transition: transform 0.5s;
}
a:hover{
box-shadow:inset 4px 4px 6px -2px rgba(0,0,0,0.2),
inset -4px -4px 6px -1px rgba(255,255,255,0.7),
-0.5px -0.5px 0px -1px rgba(255,255,255,1),
0.5px 0.5px 0px rgba(0,0,0,0.15),
0px 12px 10px -10px rgba(0,0,0,0.05);
border: 1px solid rgba(0, 124, 196, 0.1);
transform: translateY(2px);
}
a:hover i{
transform: scale(0.90);
}
a:hover .fa-facebook{
color: #3b5998;
}
a:hover .fa-twitter{
color: #00acee;
}
a:hover .fa-whatsapp{
color: #4fce5d;
}
a:hover .fa-instagram{
color: #f14843;
}
a:hover .fa-youtube{
color: #f00;
}