.post {
  width: 220px;
  height: 62px;

  .avatar {    
    float: left;
    width: 56px;
    height: 26px;
    background-color: #ccc;
    border-radius: 25%;
    margin: 8px;
    animation: loading 1.5s infinite ease-in-out;
  }

  .line {
    float: left;
    width: 140px;
    height: 16px;
    margin-top: 12px;
    background-color: #ccc;
    border-radius: 7px;
    animation: loading 1.5s infinite ease-in-out;
  }
    
  .avatar + .line {
    margin-top: 11px;
    width: 100px;
  }

  .line ~ .line {
    background-color: #ddd;
  }

  @keyframes loading {
    0% {
      background-color: #ccc;
    }

    50% {
      background-color: #e0e0e0;
    }

    100% {
      background-color: #ccc;
    }
  }
}
