Skip to content

Instantly share code, notes, and snippets.

@oliwa
Last active April 23, 2019 11:17
Show Gist options
  • Save oliwa/c9000b76299b8436fa1dc1dcf85f1000 to your computer and use it in GitHub Desktop.
Save oliwa/c9000b76299b8436fa1dc1dcf85f1000 to your computer and use it in GitHub Desktop.
Insert FA Icon with Pseudo Attributes
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