_account.scss 3.44 KB
.account-save {

  &.button-wr {
    text-align: center;
    button, .account-cancel {
      display: inline-block;
    }
    .account-cancel {
      cursor: pointer;
      padding: 0 39px;
      b {
        font-weight: 700;
        color: #888888;
        font-size: 13px;
        text-transform: uppercase;
        border-bottom: 1px solid #02a8d1;

        line-height: 42px;
      }
      &:hover {
        b {
          border-bottom: 0;
        }
      }
    }
  }
}

.change-password-link {
  margin-top: 11px;
  span, a {

    color: $link-color;
    font-size: 13px;
    cursor: pointer;
    &:hover {
      text-decoration: underline;

    }
  }
}

.section-block-account {
  .input-wr-file {
    width: 184px;
    label {
      width: 184px;
    }
  }
  .card-form-add-wrapp {
    border-top-left-radius: 0;
    margin-top: 0;
  }
}

.tabs-account {
  margin-top: 23px;
  ul {
    float: left;
    li {
      margin-left: 5px;
      padding: 0 20px;
      line-height: 42px;
      cursor: pointer;
      float: left;
      border: 1px solid #c9c9c9;
      border-bottom: 0;
      border-top-left-radius: 2px;
      border-top-right-radius: 2px;
      position: relative;
      &:first-child {
        margin-left: 0;
      }
      span {
        display: block;
        font-weight: 700;
        font-size: 18px;
        color: $link-color;
      }
      &.active {
        background: #f6f6f6;
        border-color: #f6f6f6;
        box-shadow: 0px 0px 12px 0px rgba(172, 171, 171, 0.6);
        span {
          color: #333;
        }
        &:before {
          width: 100%;
          height: 7px;
          background: inherit;
          content: '';
          position: absolute;
          left: 0;
          bottom: -6px;
          z-index: 3;
        }
      }
    }
  }
}
.tabs-account-forms {
  display: none;
  &.active {
    display: block;

  }
}

.account-number {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
.account-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 1px;
}

.account-edit {
  font-size: 13px;
  color: $link-color;
  margin-top: 3px;
}

.account-columns-row {
  margin-top: 15px;
  &:first-child {
    margin-top: -4px;
  }
}

.account-columns {
  width: 50%;
  float: left;
  padding-left: 15px;
  position: relative;
  &:before {
    position: absolute;
    content: '';
    left: -15px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #cccccc;
  }
  &:first-child {
    padding-left: 0;
    padding-right: 15px;
    &:before {
      display: none;
    }
  }

}

.account-pagination {
  margin-top: 35px;
  .pagination {
    margin-top: 0;
  }
}

.add-project-btn {
  margin-bottom: 37px;
  a {
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
    padding-left: 36px;
    line-height: 24px;
    &:before {
      width: 24px;
      height: 24px;
      background: $green-color;
      text-align: center;
      border-radius: 100%;
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -12px;
      content: '+';
      color: #fff;
      line-height: 22px;
      font-size: 20px;
    }
  }

}

@media (max-width: 550px) {
  .account-columns {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-top: 15px;
    &:first-child {
      margin-top: 0;
    }
    &:before {
      display: none;
    }
  }
  .add-book-form-column {
    width: 100%;
  }
  .tabs-account ul {
    li {
      padding: 0 15px;
      span {
        font-size: 16px;
      }
    }
  }
}