.profile {
  background: #FFF;
  overflow: hidden;
  padding: 15px 10px;
  padding-bottom: 0;
}

.stats {
  padding: 5px;
}

.languages {
  & {
    position: relative;
    clear: both;
    margin: 0 -10px;
    padding: 10px;
    min-height: 36px;

    border-top: 1px solid #DEDEDE;
    font-size: 0.8em;
  }

  &::before {
    position: absolute;
    top: -0.7em;
    background: #FFF;
    padding-right: 5px;
    content: 'Top languages';
    font-style: italic;
    color: #555;
  }

  li {
    display: inline-block;
    color: #444;
    font-weight: bold;
    margin-left: 10px;

    &::after {
      content: '\2022';
      margin-left: 10px;
      color: #999;
    }

    &:last-child::after {
      content: '';
    }
  }
}

.followMe {
  margin-top: 3px;
}

.follow-button {
  font-size: 0.8em;
  color: #333;
  float: left;
  padding: 0 10px;
  line-height: 1.5em;
  border: 1px solid #D5D5D5;
  border-radius: 3px;
  font-weight: bold;
  background: #EAEAEA;
  background-image: linear-gradient(#FAFAFA, #EAEAEA);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.follow-button:hover {
  color: inherit;
  background: #DDD;
  background-image: linear-gradient(#EEE, #DDD);
}

/* followers number */
.followMe span {
  position: relative;
  background: #FFF;
  margin-left: 8px;
  padding: 0 5px;
  color: #444;
  font-size: 0.8em;
  border: 1px solid;
  border-color: #BBB;
}

.followMe span::before {
  content: '';
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  left: -4px;
  top: 30%;
  background: inherit;
  border-left: 1px solid;
  border-top: 1px solid;
  border-color: inherit;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.avatar {
  width: 64px;
  height: 64px;
  float: left;
  margin: 0 10px 15px 0;
  margin-left: 0;
  border-radius: 5px;
  box-shadow: 0 0 2px 0 #DDD;
}
