customer
Showing
<ion-content> | <ion-content> | ||
<div class="cart_wrapper"> | <div class="cart_wrapper"> | ||
<div class="cart_head"> | <div class="cart_head"> | ||
<div class="nav_header"> | <div class="nav_header"> | ||
<button class="nav_btn nav_back_white floatLeft" (click)="goBack()"> | <button class="nav_btn nav_back_white floatLeft" (click)="goBack()"> | ||
<img src="../assets/arrow_white.png"> | <img src="../assets/arrow_white.png" /> | ||
</button> | </button> | ||
<div class="nav_title floatLeft"> | <div class="nav_title floatLeft"> | ||
<h4>CART</h4> | <h4>CART</h4> | ||
</div> | </div> | ||
<button class="nav_btn floatRight"> | <button class="nav_btn floatRight"></button> | ||
<div class="clear"></div> | |||
</button> | </div> | ||
<div class="clear"></div> | <div class="cart_menu_header"> | ||
</div> | <ul> | ||
<div class="cart_menu_header"> | <li class="textCenter active" [class.active]="currentIndex == 0"> | ||
<ul> | CART | ||
<li class="textCenter active" [class.active]="currentIndex == 0">CART</li> | </li> | ||
<li class="textCenter"> | <li class="textCenter"> | ||
<hr> | <hr /> | ||
</li> | </li> | ||
<li class="textCenter" [class.active]="currentIndex == 1">CHECKOUT</li> | <li class="textCenter" [class.active]="currentIndex == 1"> | ||
<li class="textCenter"> | CHECKOUT | ||
<hr> | </li> | ||
</li> | <li class="textCenter"> | ||
<li class="textCenter" [class.active]="currentIndex == 2">FINISH</li> | <hr /> | ||
</ul> | </li> | ||
<li class="textCenter" [class.active]="currentIndex == 2">FINISH</li> | |||
</ul> | |||
</div> | |||
<div class="cart_content"> | |||
<ion-slides | |||
pager="false" | |||
[options]="cartwizard" | |||
(ionSlideDidChange)="slideChanged()" | |||
> | |||
<ion-slide> | |||
<div class="cart_list" *ngIf="cartService.carts"> | |||
<ul *ngIf="cartService.carts.length > 0"> | |||
<li *ngFor="let carts of cartService.carts; let i= index"> | |||
<div class="close" (click)="cartService.removeItem(i)"></div> | |||
<div class="cart_image"> | |||
<img [src]="carts.image" onerror="this.src=''" /> | |||
</div> | |||
<div class="cart_detail"> | |||
<h4>{{carts.prodName}}</h4> | |||
<h4>{{carts.size}}, {{carts.color}}</h4> | |||
<h5>A$ {{carts.price}}</h5> | |||
</div> | |||
<div class="cart_count"> | |||
<div class="add" (click)="cartService.addCount(i)">+</div> | |||
<div class="count">{{carts.qty}}</div> | |||
<div class="remove" (click)="cartService.removeCount(i)"> | |||
- | |||
</div> | |||
</div> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
<div class="total_div" *ngIf="cartService.cartTotal"> | |||
<ion-row> | |||
<ion-col> | |||
<p class="textLeft">Total Price:</p> | |||
</ion-col> | |||
<ion-col> | |||
<p class="textRight">A$ {{cartService.cartTotal}}</p> | |||
</ion-col> | |||
</ion-row> | |||
</div> | |||
<div | |||
class="no-items-wrapper" | |||
*ngIf="cartService.carts.length == 0" | |||
> | |||
<img src="../../assets/noitem.png" /> | |||
<h1>There is no products added</h1> | |||
<button (click)="goToPage('home')">Shop Now</button> | |||
</div> | |||
</div> | </div> | ||
<div class="cart_content"> | </ion-slide> | ||
<ion-slides pager="false" [options]="cartwizard" (ionSlideDidChange)="slideChanged()"> | <ion-slide> | ||
<ion-slide> | <div class="checkout_list"> | ||
<div class="cart_list" *ngIf="cartService.carts"> | <h5> | ||
<ul *ngIf="cartService.carts.length > 0"> | <span class="floatLeft">ITEMS</span> | ||
<li *ngFor="let carts of cartService.carts; let i= index"> | <span class="floatRight" *ngIf="cartService.cartTotal" | ||
<div class="close" (click)="cartService.removeItem(i)"></div> | >A$ {{cartService.cartTotal}}</span | ||
<div class="cart_image"><img [src]="carts.image" onerror="this.src=''" /></div> | > | ||
<div class="cart_detail"> | <div class="clear"></div> | ||
<h4>{{carts.prodName}}</h4> | </h5> | ||
<h4>{{carts.size}}, {{carts.color}}</h4> | <ion-grid | ||
<h5>A$ {{carts.price}}</h5> | class="p0" | ||
</div> | *ngIf="cartService.carts && cartService.carts.length > 0" | ||
<div class="cart_count"> | > | ||
<div class="add" (click)="cartService.addCount(i)">+</div> | <ion-row *ngFor="let carts of cartService.carts"> | ||
<div class="count">{{carts.qty}}</div> | <ion-col size="6" class="p0"> | ||
<div class="remove" (click)="cartService.removeCount(i)">-</div> | <h6 class="textLeft">{{carts.prodName}}</h6> | ||
</div> | </ion-col> | ||
<div class="clear"></div> | <ion-col size="2" class="p0"> | ||
</li> | <h6 class="textRight"><strong>{{carts.qty}} X</strong></h6> | ||
</ul> | </ion-col> | ||
<div class="total_div" *ngIf="cartService.cartTotal"> | <ion-col size="4" class="p0"> | ||
<ion-row> | <h6 class="textRight"> | ||
<ion-col> | <strong>A$ {{carts.price}}</strong> | ||
<p class="textLeft">Total Price:</p> | </h6> | ||
</ion-col> | </ion-col> | ||
<ion-col> | </ion-row> | ||
<p class="textRight">A$ {{cartService.cartTotal}}</p> | </ion-grid> | ||
</ion-col> | <hr /> | ||
</ion-row> | <h5> | ||
</div> | <span class="floatLeft">DELIVERY</span> | ||
</div> | <span class="floatRight" (click)="istoggle()">EDIT</span> | ||
</ion-slide> | <div class="clear"></div> | ||
<ion-slide> | </h5> | ||
<div class="checkout_list"> | <ion-grid class="p0" *ngIf="custAddress"> | ||
<h5> | <ion-row> | ||
<span class="floatLeft">ITEMS</span> | <ion-col class="p0"> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ {{cartService.cartTotal}}</span> | <h6> | ||
<div class="clear"></div> | {{custAddress.building}},<br /> | ||
</h5> | {{custAddress.landmark}},<br /> | ||
<ion-grid class="p0" *ngIf="cartService.carts && cartService.carts.length > 0"> | {{custAddress.address}} | ||
<ion-row *ngFor="let carts of cartService.carts"> | </h6> | ||
<ion-col size="6" class="p0"> | </ion-col> | ||
<h6 class="textLeft">{{carts.prodName}}</h6> | </ion-row> | ||
</ion-col> | </ion-grid> | ||
<ion-col size="2" class="p0"> | <hr /> | ||
<h6 class="textRight"><strong>{{carts.qty}} X</strong></h6> | <h5> | ||
</ion-col> | <span class="floatLeft">PAYMENT</span> | ||
<ion-col size="4" class="p0"> | <span class="floatRight">CHANGE</span> | ||
<h6 class="textRight"><strong>A$ {{carts.price}}</strong></h6> | <div class="clear"></div> | ||
</ion-col> | </h5> | ||
</ion-row> | <div class="payment_method"> | ||
</ion-grid> | <input | ||
<hr> | type="radio" | ||
<h5> | name="payments" | ||
<span class="floatLeft">DELIVERY</span> | id="cod" | ||
<span class="floatRight" (click)="istoggle()">EDIT</span> | name="radio-group" | ||
<div class="clear"></div> | checked="true" | ||
</h5> | /> | ||
<ion-grid class="p0" *ngIf="custAddress"> | <label for="paypal"> | ||
<ion-row> | <p>COD</p> | ||
<ion-col class="p0"> | </label> | ||
<h6> | </div> | ||
{{custAddress.building}},<br/> {{custAddress.landmark}},<br/> {{custAddress.address}} | <!-- <div class="payment_method"> | ||
</h6> | |||
</ion-col> | |||
</ion-row> | |||
</ion-grid> | |||
<hr> | |||
<h5> | |||
<span class="floatLeft">PAYMENT</span> | |||
<span class="floatRight">CHANGE</span> | |||
<div class="clear"></div> | |||
</h5> | |||
<div class="payment_method"> | |||
<input type="radio" name="payments" id="cod" name="radio-group" checked="true"> | |||
<label for="paypal"> | |||
<p>COD</p> | |||
</label> | |||
</div> | |||
<!-- <div class="payment_method"> | |||
<input type="radio" name="payments" id="paypal" name="radio-group" checked (click)="getwaypaypal()"> | <input type="radio" name="payments" id="paypal" name="radio-group" checked (click)="getwaypaypal()"> | ||
<label for="test1"> | <label for="test1"> | ||
<p>PayPal</p> | <p>PayPal</p> | ||
... | @@ -134,7 +167,7 @@ | ... | @@ -134,7 +167,7 @@ |
<div class="card_div" [hidden]="gateway !=3"> | <div class="card_div" [hidden]="gateway !=3"> | ||
<input class="card_no borderNone widthFull" placeholder="PafyK ID"> | <input class="card_no borderNone widthFull" placeholder="PafyK ID"> | ||
</div> --> | </div> --> | ||
<!-- <div class="delivery_time"> | <!-- <div class="delivery_time"> | ||
<ul> | <ul> | ||
<li> | <li> | ||
Delivery 10 Mnt<br> | Delivery 10 Mnt<br> | ||
... | @@ -146,121 +179,170 @@ | ... | @@ -146,121 +179,170 @@ |
</li> | </li> | ||
</ul> | </ul> | ||
</div> --> | </div> --> | ||
<hr> | <hr /> | ||
<div class="coupon_code"> | <div class="coupon_code"> | ||
<input class="" placeholder="COUPON CODE" #promo><button class="add_btn" (click)="promoApply(promo.value)">ADD</button> | <input class="" placeholder="COUPON CODE" #promo /><button | ||
<br/> <h6>GET50</h6> | class="add_btn" | ||
<span *ngIf="discountApplied" style="color: red">Promocode applied successfully </span> | (click)="promoApply(promo.value)" | ||
</div> | > | ||
<br/> | ADD | ||
</button> | |||
<br /> | |||
<h6>GET50</h6> | |||
<span *ngIf="discountApplied" style="color: red" | |||
>Promocode applied successfully | |||
</span> | |||
</div> | |||
<br /> | |||
<h6> | <h6> | ||
<span class="floatLeft">PRODUCT COST</span> | <span class="floatLeft">PRODUCT COST</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ {{cartService.cartTotal}}</span> | <span class="floatRight" *ngIf="cartService.cartTotal" | ||
<div class="clear"></div> | >A$ {{cartService.cartTotal}}</span | ||
</h6> | > | ||
<div class="clear"></div> | |||
</h6> | |||
<h6> | <h6> | ||
<span class="floatLeft">DELIVERY CHARGE</span> | <span class="floatLeft">DELIVERY CHARGE</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ {{getDeliveryCharge(cartService.cartTotal)}}</span> | <span class="floatRight" *ngIf="cartService.cartTotal" | ||
<div class="clear"></div> | >A$ {{getDeliveryCharge(cartService.cartTotal)}}</span | ||
</h6> | > | ||
<h6> | <div class="clear"></div> | ||
<span class="floatLeft">GST/TAX</span> | </h6> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ {{getTax(cartService.cartTotal)}}</span> | <h6> | ||
<div class="clear"></div> | <span class="floatLeft">GST/TAX</span> | ||
</h6> | <span class="floatRight" *ngIf="cartService.cartTotal" | ||
<h6 *ngIf="discountApplied"> | >A$ {{getTax(cartService.cartTotal)}}</span | ||
<span class="floatLeft">DISCOUNT</span> | > | ||
<span class="floatRight">(-) A$ {{discount}}</span> | <div class="clear"></div> | ||
<div class="clear"></div> | </h6> | ||
</h6> | <h6 *ngIf="discountApplied"> | ||
<hr> | <span class="floatLeft">DISCOUNT</span> | ||
<div class="total_div"> | <span class="floatRight">(-) A$ {{discount}}</span> | ||
<ion-row> | <div class="clear"></div> | ||
<ion-col> | </h6> | ||
<p class="textLeft">Total Price:</p> | <hr /> | ||
</ion-col> | <div class="total_div"> | ||
<ion-col> | <ion-row> | ||
<p class="textRight" *ngIf="cartService.cartTotal">A$ {{getTotal(cartService.cartTotal)}}</p> | <ion-col> | ||
</ion-col> | <p class="textLeft">Total Price:</p> | ||
</ion-row> | </ion-col> | ||
</div> | <ion-col> | ||
</div> | <p class="textRight" *ngIf="cartService.cartTotal"> | ||
</ion-slide> | A$ {{getTotal(cartService.cartTotal)}} | ||
<ion-slide> | </p> | ||
<div class="order_placed_div"> | </ion-col> | ||
<img src="../assets/[email protected]"> | </ion-row> | ||
<h4>Order Placed</h4> | </div> | ||
<p>{{bookDate}}</p> | |||
<h3>The product will be delivered in</h3> | |||
<h1>60:00 Mins</h1> | |||
<button class="view_order" (click)="goToPage('myorder')">VIEW ORDERS</button><br> | |||
<button class="home_btn" (click)="goToPage('home')">HOME</button> | |||
</div> | |||
</ion-slide> | |||
</ion-slides> | |||
</div> | </div> | ||
</div> | </ion-slide> | ||
<ion-slide> | |||
<div class="order_placed_div"> | |||
<img src="../assets/[email protected]" /> | |||
<h4>Order Placed</h4> | |||
<p>{{bookDate}}</p> | |||
<h3>The product will be delivered in</h3> | |||
<h1>60:00 Mins</h1> | |||
<button class="view_order" (click)="goToPage('myorder')"> | |||
VIEW ORDERS</button | |||
><br /> | |||
<button class="home_btn" (click)="goToPage('home')">HOME</button> | |||
</div> | |||
</ion-slide> | |||
</ion-slides> | |||
</div> | |||
</div> | </div> | ||
</div> | |||
</ion-content> | </ion-content> | ||
<ion-footer> | <ion-footer> | ||
<div class="footer_btnbay" *ngIf="cartService.carts && cartService.carts.length > 0" [hidden]="currentIndex != 0"> | <div | ||
<div class="continue" (click)="goToPage('productlist')">CONTINUE SHOPING</div> | class="footer_btnbay" | ||
<div class="checkout" (click)="next(1)">CHECKOUT</div> | *ngIf="cartService.carts && cartService.carts.length > 0" | ||
</div> | [hidden]="currentIndex != 0" | ||
<div class="footer_btn" *ngIf="cartService.carts && cartService.carts.length > 0" [hidden]="currentIndex != 1" (click)="next(2);"> | > | ||
PAY | <div class="continue" (click)="goToPage('productlist')"> | ||
CONTINUE SHOPING | |||
</div> | </div> | ||
<!-- <div class="footer_btn" [hidden]="currentIndex != 2" (click)="finishpop()"> | <div class="checkout" (click)="next(1)">CHECKOUT</div> | ||
</div> | |||
<div | |||
class="footer_btn" | |||
*ngIf="cartService.carts && cartService.carts.length > 0" | |||
[hidden]="currentIndex != 1" | |||
(click)="next(2);" | |||
> | |||
PAY | |||
</div> | |||
<!-- <div class="footer_btn" [hidden]="currentIndex != 2" (click)="finishpop()"> | |||
FINISH | FINISH | ||
</div> --> | </div> --> | ||
</ion-footer> | </ion-footer> | ||
<div class="loader" *ngIf="loader"> | <div class="loader" *ngIf="loader"> | ||
<div class="lds-ripple"> | <div class="lds-ripple"> | ||
<div></div> | <div></div> | ||
<div></div> | <div></div> | ||
</div> | </div> | ||
</div> | </div> | ||
<div *ngIf="isShow" [@slideInOut]> | <div *ngIf="isShow" [@slideInOut]> | ||
<div class="nav_header"> | <div class="nav_header"> | ||
<button class="nav_btn nav_back floatLeft" (click)="istoggle(); setAddress()"> | <button | ||
<img src="../assets/Group17_2.png"> | class="nav_btn nav_back floatLeft" | ||
</button> | (click)="istoggle(); setAddress()" | ||
<div class="nav_title floatLeft"> | > | ||
<h4>CHANGE LOCATION</h4> | <img src="../assets/Group17_2.png" /> | ||
</div> | </button> | ||
<div class="nav_title floatLeft"> | |||
<h4>CHANGE LOCATION</h4> | |||
</div> | |||
<div class="clear"></div> | |||
</div> | |||
<ion-content class="sort_wrappper"> | |||
<agm-map | |||
[zoom]="20" | |||
[latitude]="lat" | |||
[longitude]="lng" | |||
[disableDefaultUI]="false" | |||
[zoomControl]="false" | |||
[backgroundColor]="'rgba(29, 27, 130,0.2)'" | |||
> | |||
<agm-marker [latitude]="lat" [longitude]="lng"></agm-marker> | |||
</agm-map> | |||
<div class="add_address_wrapper"> | |||
<h5> | |||
<span class="floatLeft">NEW ADDRESS</span> | |||
<span class="floatRight" (click)="istoggle(); goToPage('nearby')" | |||
>ADD NEW</span | |||
> | |||
<div class="clear"></div> | <div class="clear"></div> | ||
</h5> | |||
<ul | |||
*ngIf="addressService.addressList && addressService.addressList.length > 0" | |||
> | |||
<li *ngFor="let address of addressService.addressList; let i = index"> | |||
<div class="floatLeft"> | |||
{{address.default}} | |||
<input | |||
class="styled-checkbox" | |||
name="addressId" | |||
id="styled-checkbox-{{i}}" | |||
type="radio" | |||
(click)="setDefault(address.addressId, i)" | |||
[value]="address.addressId" | |||
#addressType | |||
[checked]="address.defaultVal == 1" | |||
/> | |||
<label for="styled-checkbox-{{i}}"> {{address.addressType}} </label> | |||
</div> | |||
<div class="floatLeft"> | |||
<p> | |||
{{address.building}}, {{address.landmark}}, {{address.address}} | |||
</p> | |||
</div> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | </div> | ||
<ion-content class="sort_wrappper"> | </ion-content> | ||
<agm-map [zoom]="20" [latitude]="lat" [longitude]="lng" [disableDefaultUI]="false" [zoomControl]="false" [backgroundColor]="'rgba(29, 27, 130,0.2)'"> | |||
<agm-marker [latitude]="lat" [longitude]="lng"></agm-marker> | |||
</agm-map> | |||
<div class="add_address_wrapper"> | |||
<h5> | |||
<span class="floatLeft">NEW ADDRESS</span> | |||
<span class="floatRight" (click)="istoggle(); goToPage('nearby')">ADD NEW</span> | |||
<div class="clear"></div> | |||
</h5> | |||
<ul *ngIf="addressService.addressList && addressService.addressList.length > 0"> | |||
<li *ngFor="let address of addressService.addressList; let i = index"> | |||
<div class="floatLeft">{{address.default}} | |||
<input class="styled-checkbox" name="addressId" id="styled-checkbox-{{i}}" type="radio" (click)="setDefault(address.addressId, i)" [value]="address.addressId" #addressType [checked]="address.defaultVal == 1"> | |||
<label for="styled-checkbox-{{i}}"> {{address.addressType}} | |||
</label> | |||
</div> | |||
<div class="floatLeft"> | |||
<p> | |||
{{address.building}}, {{address.landmark}}, {{address.address}} | |||
</p> | |||
</div> | |||
<div class="clear"></div> | |||
</li> | |||
</ul> | |||
</div> | |||
</ion-content> | |||
</div> | </div> | ||
src/app/failed/failed.module.ts
0 → 100644
src/app/failed/failed.page.html
0 → 100644
src/app/failed/failed.page.scss
0 → 100644
src/app/failed/failed.page.spec.ts
0 → 100644
src/app/failed/failed.page.ts
0 → 100644
... | @@ -44,11 +44,13 @@ | ... | @@ -44,11 +44,13 @@ |
> | > | ||
<li *ngFor="let product of prodService.product; let i = index"> | <li *ngFor="let product of prodService.product; let i = index"> | ||
<div class="product_image"> | <div class="product_image"> | ||
<img | <div class="load-back"> | ||
[src]="product.image" | <img | ||
onerror="this.src='../assets/[email protected]'" | [src]="product.image" | ||
(click)="prodDetails(i)" | onerror="this.src='../assets/[email protected]'" | ||
/> | (click)="prodDetails(i)" | ||
/> | |||
</div> | |||
<div | <div | ||
[ngClass]="checkFavStatus(product.prodId)" | [ngClass]="checkFavStatus(product.prodId)" | ||
(click)="changeFav(product.prodId)" | (click)="changeFav(product.prodId)" | ||
... | @@ -63,11 +65,37 @@ | ... | @@ -63,11 +65,37 @@ |
</p> | </p> | ||
</li> | </li> | ||
</ul> | </ul> | ||
<div class="no-result-wrapper" *ngIf="prodService.product.length === 0"> | </div> | ||
<img src="../../assets/basket.png" /> | <ul | ||
<h1>No result found</h1> | [class.grid_view]="onGrid" | ||
<button (click)="goToPage('home')">home</button> | *ngIf="prodService.product && prodService.product.length > 0" | ||
</div> | > | ||
<li *ngFor="let product of prodService.product; let i = index"> | |||
<div class="product_image"> | |||
<img | |||
[src]="product.image" | |||
onerror="this.src='../assets/[email protected]'" | |||
(click)="prodDetails(i)" | |||
/> | |||
<div | |||
[ngClass]="checkFavStatus(product.prodId)" | |||
(click)="changeFav(product.prodId)" | |||
></div> | |||
<div class="featured_badge" *ngIf="product.featured">Featured</div> | |||
</div> | |||
<h5 class="ellipse" (click)="prodDetails(i)">{{product.prodName}}</h5> | |||
<p (click)="prodDetails(i)"> | |||
A$ {{product.price}}<span class="offer" *ngIf="product.discount > 0" | |||
>-{{product.discount}}%</span | |||
> | |||
</p> | |||
</li> | |||
</ul> | |||
<div class="no-result-wrapper" *ngIf="prodService.product.length === 0"> | |||
<img src="../../assets/basket.png" /> | |||
<h1>No result found</h1> | |||
<button (click)="goToPage('home')">home</button> | |||
</div> | </div> | ||
<div class="sort_wrappper" *ngIf="isShow" [@slideInOut]> | <div class="sort_wrappper" *ngIf="isShow" [@slideInOut]> | ||
<div class="sort_inner"> | <div class="sort_inner"> | ||
... | ... |
src/app/success/success.module.ts
0 → 100644
src/app/success/success.page.html
0 → 100644
src/app/success/success.page.scss
0 → 100644
.success_wrapper { | |||
width: 100%; | |||
.cart_head { | |||
width: 100%; | |||
height: auto; | |||
background-image: url("../../assets/[email protected]"); | |||
background-position: center bottom; | |||
background-repeat: no-repeat; | |||
background-size: cover; | |||
padding-bottom: 35px; | |||
.nav_header { | |||
position: static; | |||
background-color: transparent; | |||
.nav_title { | |||
h4 { | |||
color: #FFF; | |||
} | |||
} | |||
} | |||
.cart_menu_header { | |||
padding: 50px 20px 20px 20px; | |||
ul { | |||
margin: 0px; | |||
padding: 10px; | |||
background-color: rgba(273, 273, 273, 0.1); | |||
border-radius: 10px; | |||
li { | |||
list-style: none; | |||
color: #FFF; | |||
width: 20%; | |||
display: inline-block; | |||
font-weight: 700; | |||
font-size: 13px; | |||
hr { | |||
height: 0px; | |||
border-top: none; | |||
width: 90%; | |||
margin-top: 0px; | |||
margin-bottom: 0px; | |||
position: relative; | |||
margin: 0 auto; | |||
border-bottom: 2px dashed rgba(176, 174, 199, 1); | |||
bottom: 4px; | |||
} | |||
} | |||
} | |||
} | |||
.success-set { | |||
text-align: center; | |||
margin-top: 50px; | |||
img { | |||
width: 75px; | |||
} | |||
h1 { | |||
color: #fff; | |||
font-size: 18px; | |||
font-weight: bolder; | |||
margin-top: 5px; | |||
margin-bottom: 0; | |||
text-transform: uppercase; | |||
} | |||
h2 { | |||
color: #fff; | |||
font-size: 12px; | |||
font-weight: lighter; | |||
margin-top: 2px; | |||
} | |||
} | |||
} | |||
.product-countdown { | |||
padding: 20px; | |||
text-align: center; | |||
margin-top: 25px; | |||
h1 { | |||
color: #B0AEC7; | |||
font-size: 16px; | |||
margin-top: 10px; | |||
} | |||
h2 { | |||
color: #3B394D; | |||
font-size: 40px; | |||
font-weight: bolder; | |||
margin-top: 15px; | |||
span { | |||
font-size: 16px; | |||
font-weight: lighter; | |||
} | |||
} | |||
button { | |||
background-color: #29285b; | |||
border-radius: 8px; | |||
height: 50px; | |||
width: 48%; | |||
color: #fff; | |||
font-size: 18px; | |||
font-weight: lighter; | |||
text-transform: uppercase; | |||
margin-top: 25px; | |||
margin-bottom: 50px; | |||
} | |||
h3 { | |||
color: #29285b; | |||
background: none; | |||
font-size: 20px; | |||
font-weight: bolder; | |||
text-transform: uppercase; | |||
margin-top: 20px; | |||
margin-bottom: 50px; | |||
} | |||
} | |||
} | |||
@media only screen and (max-width: 350px) { | |||
.cart_head { | |||
padding-bottom: 15px !important; | |||
.cart_menu_header { | |||
padding: 20px !important; | |||
ul { | |||
li { | |||
font-size: 12px !important; | |||
} | |||
} | |||
} | |||
.success-set { | |||
margin-top: 0 !important; | |||
} | |||
} | |||
} | |||
\ No newline at end of file |
src/app/success/success.page.spec.ts
0 → 100644
src/app/success/success.page.ts
0 → 100644
src/assets/failed.png
0 → 100644
4.95 KB
src/assets/giphy.gif
0 → 100644
8.61 KB