Created
February 19, 2017 22:47
-
-
Save devhero/ab261b73c757bdcd2066cfe86f7a10f4 to your computer and use it in GitHub Desktop.
font awesome list icon - http://stackoverflow.com/questions/12468359/using-font-awesome-icon-for-bullet-points-with-a-single-list-item-element
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
ul { | |
list-style-type: none; | |
padding-left: 20px; | |
} | |
li { | |
position: relative; | |
padding-left: 20px; | |
margin-bottom: 10px | |
} | |
li:before { | |
position: absolute; | |
top: 0; | |
left: 0; | |
font-family: FontAwesome; | |
content: "\f058"; | |
color: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment