"social media"
Bootstrap 3.0.0 Snippet by evarevirus

1
2
3
4
5
6
7
8
9
10
11
12
13
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="links-container">
<ul class="contact-links">
<li><a href="https://twitter.com/RiccardoZanutta" target="_blank"><span class="fa fa-twitter"></span></a></li>
<li><a href="https://codepen.io/rickzanutta/"><span class="fa fa-codepen"></span></a></li>
<li><a href="https://github.com/Riccardo-Zanutta" target="_blank"><span class="fa fa-github"></span></a></li>
<li><a href="it.linkedin.com/in/riccardozanutta" target="_blank"><span class="fa fa-linkedin"></span></a></li>
</ul><!-- /.contact-links -->
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
* {
box-sizing: border-box;
}
body {
overflow-x: hidden;
background: #f8f8f8;
}
.links-container {
width: 100%;
margin: 100px auto;
}
.contact-links {
width: 100%;
text-align: center;
}
.contact-links > li {
display: inline-block;
padding: 15px;
}
.contact-links > li a {
position: relative;
text-decoration: none;
background: #1B1725;
display: block;
height: 80px;
width: 80px;
border-radius: 50%;
}
.contact-links > li a:before {
content: "";
position: absolute;
top: 7%;
left: 7%;
width: 85%;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: