profile.page.scss 3.85 KB
.profile_wrapper {
  .profile_banner {
    width: 100%;
    background-image: url('../../assets/profile_banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding-top: 40px;
    .profile_circle {
      width: 100px;
      height: 100px;
      background-color: #fff;
      border-radius: 50%;
      position: relative;
      margin: 0 auto;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
      }
      input {
        width: 80px;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
      }
      .edit {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
        background-color: #000;
        background-image: url('../../assets/edit_icon.png');
        background-size: cover;
        cursor: pointer;
        position: absolute;
        top: 0px;
        right: 0px;
      }
    }
    h5 {
      text-align: center;
      color: #fff;
      margin: 0px;
      padding-top: 15px;
      font-weight: 600;
      padding-bottom: 5px;
    }
    p {
      color: rgba(206, 153, 76, 1);
      text-align: center;
      margin: 0px;
      padding-bottom: 20px;
      font-weight: 700;
    }
  }
  .account_wrapper {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 100px;
    .account_header {
      padding-bottom: 15px;
      h5 {
        margin: 0px;
        padding: 0px;
        color: rgba(59, 57, 77, 1);
        font-weight: 900;
      }
      span {
        color: rgba(59, 57, 77, 1);
        img {
          width: 20px;
        }
      }
    }
    .ar-span {
      color: rgba(206, 153, 76, 1);
      margin-left: 10px;
    }
    p {
      margin: 0px;
      padding: 0px;
      color: rgba(176, 174, 199, 1);
      font-size: 18px;
    }
    h6 {
      margin: 0px;
      padding: 0px;
      color: rgba(59, 57, 77, 1);
      font-size: 18px;
      ion-icon {
        color: rgba(176, 174, 199, 1);
      }
    }
    .row {
      padding-bottom: 20px;
    }
    hr {
      border-bottom: 1px solid rgba(176, 174, 199, 0.5);
      height: 0px;
      border-top: none;
      margin-top: 15px;
      margin-bottom: 15px;
    }
  }
  .logout-pop-wrapper {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    .logout_inner {
      margin: 0 auto;
      width: 280px;
      padding: 10px;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 15px;
      background-color: #fff;
      position: relative;
      -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
      top: 50%;
      border-radius: 10px;
      h4 {
        text-align: center;
        color: rgba(59, 57, 77, 1);
        margin: 0px;
        font-weight: bold;
        padding: 10px;
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.16);
        padding-bottom: 20px;
      }
      p {
        text-align: center;
      }
      .logout_footer {
        padding-top: 10px;
        button {
          border-radius: 8px;
          height: 40px;
          width: 48%;
          color: #fff;
          font-size: 15px;
          font-weight: lighter;
          text-transform: uppercase;
        }
        .btn-cancel {
          border: 1px solid #29285b;
          background-color: #29285b;
        }
        .btn-logout {
          background-color: #fff;
          border: 1px solid rgba(0, 0, 0, 0.16);
          color: #000;
        }
      }
    }
  }
}