/*
* Styles the Dribbble feed
*
*/
/* Vars ----------------------------------------------------*//* Mixins ----------------------------------------------------*/#dribbble-holder {
  overflow: hidden;
}
#dribbble-holder .dribbble-heading {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 24px;
  margin-left: 20px;
  margin-right: 20px;
  border-bottom: 2px solid #694e41;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
#dribbble-holder .dribbble-heading a {
  font-family: Tahoma, Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #694e41;
  float: right;
}
#dribbble-holder .dribbble-heading a:hover {
  text-decoration: underline;
}
#dribbble-holder #dribbble-shots {
  display: block;
}
#dribbble-holder #dribbble-shots li {
  display: block;
  float: left;
  width: 140px;
  margin-left: 20px;
  margin-bottom: 20px;
}
#dribbble-holder #dribbble-shots li a {
  position: relative;
  display: block;
  margin-bottom: 10px;
  background: #694e41;
}
#dribbble-holder #dribbble-shots li a img {
  max-width: 100%;
  line-height: 0em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.22);
}
#dribbble-holder #dribbble-shots li a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  background: url(../img/dribbble-link.png) no-repeat center center;
}
#dribbble-holder #dribbble-shots li a:hover:before {
  display: block;
}
#dribbble-holder #dribbble-shots li a:hover img {
  opacity: 0.1;
}
#dribbble-holder #dribbble-shots li span {
  font-size: 12px;
  text-align: center;
  display: none;
  line-height: 1.3em;
}
