Skip to content

Instantly share code, notes, and snippets.

View avdoshenkov's full-sized avatar

Dmitry Avdoshenkov avdoshenkov

View GitHub Profile
@avdoshenkov
avdoshenkov / fa-for-li.css
Last active August 11, 2017 05:55
FontAwesome icon for li via ::before
:before {
content: "";
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
font-family: FontAwesome;
content: "\f000";
display: inline-block;
}