Image may be NSFW.
Clik here to view.
Clik here to view.

A CSS extension for Bootstrap 4 that lets you create pretty nice and fully configurable social network buttons on the webpage.
Supported Social Networks:
- Adn
- Bitbucket
- Discord
- Dropbox
- Flickr
- Foursquar
- Github
- Microsoft
- Odnoklassniki
- Openid
- Soundcloud
- Tumblr
- Viadeo
- Vimeo
- Vk
- Yahoo
How to use it:
Download and include the bootstrap-social.css after Bootstrap’s stylesheet.
<link rel="stylesheet" href="/path/to/bootstrap.min.css"> <link rel="stylesheet" href="/path/to/bootstrap-social.css">
Add btn-social
and btn-socialName
classes to the Bootstrap buttons and done.
<a class="btn btn-social btn-facebook"> <i class="fab fa-facebook-f"></i> Facebook </a> <a class="btn btn-social btn-google"> <img src="btn_google.svg"> Login via Google </a>
Show social icons only. In this example, we’re going to use Font Awesome for social icons.
<a class="btn btn-social-icon btn-facebook"> <i class="fab fa-facebook-f"></i> </a>
The post Create Custom Social Buttons Using Bootstrap 4 – bootstrap-social appeared first on CSS Script.