myorder.page.scss 3.01 KB
.myorder_wrapper {
  ul {
    margin: 0px;
    padding: 10px;
    li {
      list-style: none;
      padding: 10px;
      padding-bottom: 15px;
      .order_info {
        padding-top: 10px;
        padding-bottom: 10px;
        h5 {
          margin: 0px;
          padding: 0px;
        }
        .order_track {
          background-color: rgba(53, 203, 171, 1);
          color: #fff;
          border-radius: 3px;
          padding: 3px;
          padding-left: 10px;
          padding-right: 10px;
        }
      }
      .order_image {
        width: 90px;
        height: 90px;
        float: left;
        border-radius: 8px;
        background-color: #a8a8a8;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
        }
      }
      .order_detail {
        width: calc(100% - 190px);
        float: left;
        padding-left: 20px;
        h5 {
          margin: 0px;
          padding: 0px;
          color: rgba(176, 174, 199, 1);
          font-size: 16px;
          padding-top: 3px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          width: 100%;
          span {
            color: #29285b;
          }
        }
        h6 {
          margin: 0px;
          padding: 0px;
          color: rgba(176, 174, 199, 1);
          font-size: 12px;
          padding-top: 9px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }
        p {
          margin: 0px;
          padding: 0px;
          color: rgba(59, 57, 77, 1);
          font-weight: 900;
          padding-top: 10px;
          font-size: 20px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }
      }
      .order_other {
        width: 100px;
        float: right;
        h6 {
          margin: 0px;
          padding: 0px;
          color: rgba(176, 174, 199, 1);
          font-size: 12px;
          padding-top: 9px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          padding-bottom: 10px;
        }
        h5 {
          margin: 0px;
          padding: 0px;
          color: rgba(206, 153, 76, 1);
          font-size: 16px;
          font-weight: bold;
        }
        .track_btn {
          background: #29285b;
          color: #fff;
          float: right;
          padding: 12px;
          font-size: 18px;
          border-radius: 5px;
          padding-left: 15px;
          padding-right: 15px;
        }
      }
    }
  }

  .empty-wishlist-wrapper {
    text-align: center;
    padding-top: 25%;
    img {
      width: 100px;
    }
    h1 {
      font-size: 18px;
      font-weight: bolder;
      text-transform: uppercase;
      color: #3b394d;
    }
    button {
      background-color: #29285b;
      border-radius: 8px;
      height: 50px;
      width: 48%;
      color: #fff;
      font-size: 18px;
      font-weight: lighter;
      text-transform: uppercase;
      margin-top: 10px;
    }
  }
}