Social

by Charles Butler

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<ul class="fancy-list">
  <li class="soc-color facebook"><a href="#">Facebook</a></li>
  <li class="soc-color twitter"><a href="#">Twitter</a></li>
  <li class="soc-color rss"><a href="#">RSS Feed</a></li>
</ul>
<div class="clear"></div>
<div class="social-list">
  <div class="social-icon">
    <i class="fa fa-fw fa-user"></i>
  </div>
  <span class="social-title">Facebook</span>
  <span class="social-subtitle">Like Us Today!</span>
</div>

CSS

ul.fancy-list {
  padding: 10px;
  background: #2E2E2E;
}

ul.fancy-list li {
  list-style: none;
  font-size: 20px;
  line-height: 40px;
  color: #000;
  position: relative;
  margin: 0px 0 10px 0px;
  padding: 0;
  -moz-box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.1);
}

.clear {
  clear: both;
}

ul.fancy-list li:after {
  clear: both;
}

ul.fancy-list li:before {
  font-family: FontAwesome;
  font-size: 30px;
  content: "\f005";
  float: left;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  margin-right: 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-right: none;
}

ul.fancy-list li a {
  display: block;
  color: #FFF;
  text-decoration: none;
  background: #333;
  margin-left: 40px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

ul.fancy-list li.twitter:before {
  font-family: FontAwesome;
  content: "\f099";
}

ul.fancy-list li.facebook:before {
  font-family: FontAwesome;
  content: "\f09a";
}

ul.fancy-list li.rss:before {
  font-family: FontAwesome;
  content: "\f09e";
}

.social-icon {
  float: left;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  margin: 0;
  padding: 0;
  margin-right: 10px;
}

.social-list .social-icon .fa {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
}

.social-list .social-title,
.social-list .social-subtitle {
  display: block;
}

.social-list .social-title {
  text-transform: uppercase;
  font-size: 14px;
}

.social-list .social-subtitle {
  font-size: 12px;
}

ul.fancy-list li.blogger {
  background-color: #FF8833;
  color: white;
}

ul.fancy-list li.blogger:hover,
ul.fancy-list li.blogger:focus {
  background-color: rgba(252, 79, 8, 0.8);
  color: white;
}

ul.fancy-list li.facebook {
  background-color: #3B5998;
  color: white;
}

ul.fancy-list li.facebook:hover,
ul.fancy-list li.facebook:focus {
  background-color: rgba(59,...