I have footer which has few icons.These icons have border around them. The problem is that based on the icon,the border size is getting changed.But I need border with equal sizes for all the icons. Could any one help me with this.
<div class="site-footer">
<div class="row">
<div class="col-lg-6">
<p class="box-1">
You can visit us at <span class="link-webiste" style="size: 70px !important;">agoodtreeproduction.com</span></p>
</div>
<div class="col-lg-6">
<h3 style="color: white;"> Around The Web</h3>
<ul class="list-inline">
<li class="footer-elements">
<a href="#" class=""><i class="fa fa-facebook btn-outline icon" aria-hidden="true"></i></a>
</li>
<li class="footer-elements">
<a href="#" class=""><i class="fa fa-twitter btn-outline icon" aria-hidden="true"></i></a>
</li>
<li class="footer-elements">
<a href="#" class=""><i class="fa fa-google-plus btn-outline icon" aria-hidden="true"></i></a>
</li>
<li class="footer-elements">
<a href="#" class=""><i class="fa fa-linkedin btn-outline icon" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
</div>
css
li {
display: inline;
}
.site-footer{
background-color: #6E2607;
//display: flex;
}
.box{
height:100px;
min-width: 200px;
}
.One{
//background-color: blue;
}
.two{
//background-color: yellow;
}
.box-1{
color: white !important;
}
.footer-elements{
padding: 20px;
}
.icon{
font-size: 30px !important;
}
.btn-outline{
color:#fff;
background:0;
border-style:solid;
border-radius:50%;
transition: background-color 0.7s ease-in-out;
margin-top: 5px;
padding: 25px;
}
.btn-outline:hover{
background-color: #000000;
}
Demo here:
https://jsfiddle.net/VijayVj7/zadx4rec/