Last active
January 31, 2018 12:50
-
-
Save SanjeevMohindra/570119e78292bd9cc1a9d70de7a85ca2 to your computer and use it in GitHub Desktop.
A basic customisation to add social icons in Genesis Author Box
This file contains 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
.author-box { | |
box-shadow: 0 0 10px rgba(0,0,0,.1); | |
border: 1px solid #b3b3b3; | |
} | |
.author-box .avatar { | |
border-radius: 50% 50% 50% 50%; | |
} | |
a.social-buttons { | |
background-color: #333; | |
border-right: 1px solid #fff; | |
color: #fff; | |
float: left; | |
font-size: 10px; | |
font-size: 1rem; | |
overflow: hidden; | |
padding: 8px 0; | |
padding: 0.8rem 0; | |
text-align: center; | |
text-decoration: none; | |
text-transform: uppercase; | |
width: 25%; | |
} | |
a.social-buttons.last { | |
border: none; | |
} | |
a.social-buttons:hover { | |
background-color: #f96e5b; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment