Last active
November 5, 2015 09:30
-
-
Save frankschrijvers/441881a4c0c6b595e824 to your computer and use it in GitHub Desktop.
Circular Background for Font Awesome Icons
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
.textwidget i { | |
background: none; | |
border: 3px solid #eee; | |
border-radius: 50%; | |
box-sizing: content-box; | |
color: #c7ad7b; | |
display: inline-block; | |
font-size: 3.42857rem; | |
height: 3.42857rem; | |
padding: 30px; | |
width: 3.42857rem; | |
-moz-transition: color 0.2s linear; | |
-o-transition: color 0.2s linear; | |
-webkit-transition: color 0.2s linear; | |
transition: color 0.2s linear; | |
} | |
.textwidget i:hover { | |
color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment