Created
August 21, 2014 21:03
-
-
Save cliftoncanady/74b6c2ba9c18a39b839b to your computer and use it in GitHub Desktop.
CSS: FontAwesome Wiget Snippet
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
span.title { | |
position: relative; | |
font-size: 1rem; | |
margin-bottom: 5px; | |
margin-left: 40px; | |
color: #000; | |
} | |
span.title:before { | |
content: "\f087"; | |
font-family: FontAwesome; | |
font-style: normal; | |
font-weight: normal; | |
text-decoration: inherit; | |
/*--adjust as necessary--*/ | |
color: rgba(56, 84, 107, 1);; | |
font-size: 18px; | |
position: absolute; | |
top: -3px; | |
left: -30px; | |
} | |
span.blub { | |
display: block; | |
color: #000; | |
padding-left: 40px; | |
line-height: 18px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment