Created
October 14, 2021 07:50
-
-
Save jaikt/64c03b0e88e9a47ebf33ccdeb942699b to your computer and use it in GitHub Desktop.
Follow Us BTN's CSS Code (⚠ WordPress Only)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Poppins Font*/ | |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap'); | |
/* Start of WpXube Follow Buttons */ | |
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"); | |
.wpxube-com { | |
user-select: none; | |
font-family: 'Poppins', sans-serif; | |
font-weight: 300; | |
text-align: center; | |
display: table; | |
padding: 10px 10px 5px; | |
border-radius: 10px; | |
width:100%; | |
margin:0; | |
} | |
.wpxube-com .main { | |
font-size: 18px; | |
font-weight:600; | |
letter-spacing: 1px; | |
color:black;border-bottom: 1px solid #ddd; | |
padding-bottom:12px; | |
} | |
.wpxube-com ul{ | |
padding: 0px; | |
margin: 0px; | |
margin-left:15px; | |
} | |
.wpxube-com li { | |
float: left; | |
list-style: none; | |
font-size: 20px; | |
text-align: center; | |
margin-right:8px; | |
} | |
.wpxube-com li a i { | |
background-color: #f1f1f1; | |
color: #fff; | |
border-radius: 100%; | |
height: 40px; | |
width: 40px; | |
line-height: 43px !important; | |
} | |
.wpxube-com li a i:hover{ | |
opacity: 0.8; | |
} | |
.wpxube-com li a i.fa.fa-facebook { | |
background-color: #3b5997; | |
} | |
.wpxube-com li a i.fa.fa-whatsapp { | |
background-color: #25D366; | |
} | |
.wpxube-com li a i.fa.fa-instagram { | |
background-color: #3e729a; | |
} | |
.wpxube-com li a i.fa.fa-paper-plane { | |
background-color: #1DA1F2; | |
} | |
.wpxube-com li a i.fa.fa-youtube-play { | |
background-color: #c42f2b; | |
} | |
.wpxube-com li a i.fa.fa-twitter { | |
background-color: #57aced; | |
} | |
.wpxube-com li a i.fa.fa-pinterest-p { | |
background-color: #cb2026; | |
} | |
/* End of WpXube Follow Buttons */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment