Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active November 5, 2015 09:30
Show Gist options
  • Save frankschrijvers/441881a4c0c6b595e824 to your computer and use it in GitHub Desktop.
Save frankschrijvers/441881a4c0c6b595e824 to your computer and use it in GitHub Desktop.
Circular Background for Font Awesome Icons
.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