"Social Buttons"
Bootstrap 4.0.0 Snippet by richbnak7

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.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="container">
<div class="row">
<ul class="social-btns center-block">
<li><button class="btn btn-facebook"><i class="fa fa-facebook pull-left" aria-hidden="true"></i>Sign in with Facebook</button></li>
<li><button class="btn btn-twitter"><i class="fa fa-twitter pull-left" aria-hidden="true"></i>Sign in with Twitter</button></li>
<li><button class="btn btn-linkedin"><i class="fa fa-linkedin pull-left" aria-hidden="true"></i>Sign in with Linkedin</button></li>
<li><button class="btn btn-google"><i class="fa fa-google-plus pull-left" aria-hidden="true"></i>Sign in with Google</button></li>
<li><button class="btn btn-tumblr"><i class="fa fa-tumblr pull-left" aria-hidden="true"></i>Sign in with Tumblr</button></li>
<li><button class="btn btn-pinterest"><i class="fa fa-pinterest-p pull-left" aria-hidden="true"></i>Sign in with Pinterest</button></li>
</ul>
</div>
</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
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");
.social-btns{
font-size: 22px;
list-style: none;
}
.social-btns li{
margin-bottom: 5px;
}
.social-btns li i{
font-size: 22px;
}
.social-btns .btn-facebook {
background-color: #38519f;
border-color: #293b75;
color: #ffffff;
min-width: 250px;
}
.social-btns .btn-facebook:hover {
color: #ffffff;
background-color: #293b75;
}
.social-btns .btn-twitter {
background-color: #00a8fa;
border-color: #048cce;
color: #ffffff;
min-width: 250px;
}
.social-btns .btn-twitter:hover {
color: #ffffff;
background-color: #048cce;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: