Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active July 3, 2016 00:11
Show Gist options
  • Save jrobinsonc/a2d3e09de8123b59eec09d102c3d4cea to your computer and use it in GitHub Desktop.
Save jrobinsonc/a2d3e09de8123b59eec09d102c3d4cea to your computer and use it in GitHub Desktop.
Font Awesome social links
<ul class="menu">
<li class="twitter"><a href="#">Twitter</a></li>
<li class="facebook"><a href="#">Facebook</a></li>
<li class="pinterest"><a href="#">Pinterest</a></li>
<li class="google-plus"><a href="#">Google Plus</a></li>
</ul>
.menu {
li {
a {
font-size: 0;
display: inline-block;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
&:before {
font: normal normal normal 14px/1 FontAwesome;
}
}
&.twitter {
a:before {
content: "\f099";
}
}
&.facebook {
a:before {
content: "\f09a";
}
}
&.pinterest {
a:before {
content: "\f231";
}
}
&.google-plus {
a:before {
content: "\f0d5";
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment