/*
*—————————————–
* Social Icon Front-End CSS
*—————————————–
*/
body .social-links {
margin: 0;
padding: 0;
}
body .social-links li {
display: inline-block;
list-style: none;
}
body .social-links li a {
text-decoration: none;
display: block;
margin-bottom: 10px;
}
body .social-links li .social-icon {
display: inline-block;
font-size: 20px;
height: 30px;
line-height: normal;
margin-right: 10px;
padding: 6px;
position: relative;
text-align: center;
width: 30px;
z-index: 0;
}
body .social-icon:after {
content: ”;
height: 100%;
pointer-events: none;
position: absolute;
width: 100%;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
body .social-icon:before {
text-transform: none;
display: block;
-webkit-font-smoothing: antialiased;
}
body .social-icon {
-webkit-transition: box-shadow 0.2s;
-moz-transition: box-shadow 0.2s;
transition: box-shadow 0.2s;
}
body .social-icon:after {
top: 0;
left: 0;
padding: 0;
-webkit-box-shadow: 0 0 0 1px #fff;
-moz-box-shadow: 0 0 0 1px #fff;
-ms-box-shadow: 0 0 0 1px #fff;
-o-box-shadow: 0 0 0 1px #fff;
box-shadow: 0 0 0 1px #fff;
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
-moz-transition: -moz-transform 0.2s, opacity 0.2s;
transition: transform 0.2s, opacity 0.2s;
}
body .social-icon:hover:after,
body .social-icon:focus:after {
-webkit-transform: scale(0.85);
-moz-transform: scale(0.85);
-ms-transform: scale(0.85);
transform: scale(0.85);
opacity: 0.5;
}