task-list.scss 868 Bytes
.task-list {
  width: 100%;
  padding: 0;
  list-style-type: none;
  .task-group {
    border-top: 1px solid #f3f3f3;
    padding: 4px 16px 8px 16px;
  }
  .task-target {
    margin-top: 12px;
    .profile-image {
      color: #2c3e50;
      font-size: 25px;
      width: 25px;
      display: inline-block;
      @extend .img-rounded;
    }
    .target-name {
      display: inline-block;
      margin-left: 10px;
      font-size: 18px;
      font-weight: bold;
    }
  }
  .task-body {
    margin-left: 35px;
    padding: 3px;
    .task {
      display: inline-block;
      .task-icon {
        font-size: 18px;
        color: #e84e40;
      }
      .requestor, .target {
         font-style: italic;
      }
    }
    .time {
      color: #c1c1c1;
      font-size: 12px;
      .bullet-separator {
        font-size: 10px;
        color: #d1d1d1;
      }
    }
  }
}