Last active
April 23, 2019 11:17
-
-
Save oliwa/c9000b76299b8436fa1dc1dcf85f1000 to your computer and use it in GitHub Desktop.
Insert FA Icon with Pseudo Attributes
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
ul li { | |
position:relative; | |
padding: .2em 0 .2em 1em; | |
margin: 0; | |
} | |
ul li:before { | |
position: absolute; | |
top: .4em; | |
left: 0; | |
content: '\f054'; | |
font-family: 'FontAwesome'; | |
color: #84B962; | |
margin-right: .3em; | |
font-size: .9em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment