Skip to content

Instantly share code, notes, and snippets.

@icreatesolutions
Created February 4, 2016 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icreatesolutions/fa759aa04beeb69b38f0 to your computer and use it in GitHub Desktop.
Save icreatesolutions/fa759aa04beeb69b38f0 to your computer and use it in GitHub Desktop.
Wordpress Social Menu
// Inspiration:
// https://kovshenin.com/2014/social-menus-in-wordpress-themes/
#menu-social-menu{
width: auto;
test-align: center;
display: inline-block;
margin-top: 5px;
li {
float: left;
padding:5px 5px 0;
border: 0;
i {
color: white;
font-size: 18px;
}
a {
display: none;
&:after {
font-family: 'FontAwesome';
font-size: 18px;
}
}
a[href*="facebook"]:after {
content: "\f09a";
}
a[href*="twitter"]:after {
content: "\f099";
}
a[href*="pinterest"]:after {
content: "\f0d2";
}
a[href*="instagram"]:after {
content: "\f16d";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment