Skip to content

Instantly share code, notes, and snippets.

View belcherj's full-sized avatar

Jonathan Belcher belcherj

  • Curative
  • Richmond, VA
View GitHub Profile
<span class="wooicon">T</span> // The character you want to display. "T" is the Twitter bird icon.
.wooicon {
font-family: @wooicons; // Set the font-family using the LESS variable;
}
@belcherj
belcherj / gist:b2321fc330dc91d6901ee2beb660e5ec
Created February 22, 2018 20:13 — forked from Cobus/gist:9951121
FontAwesome Usage
<a class="icon" href="#" title="#">Something</a>
a.icon:before {
.iconbefore_FA; // This will insert all the necessary default properties from the LESS mixin
content: "\f0a1"; // Set icon value. Find the value by inspecting elements on this page: http://fortawesome.github.io/Font-Awesome/icons/
}