Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ <h1 class="s">Shopping Cart</h1>
<div class="listCart"></div>
<div class="btn">
<button class="close">CLOSE</button>
<button class="checkOut">Check Out</button>
<a href="http://127.0.0.1:5500/payment.html" > <button class="checkOut">Check Out</button></a>
</div>
</div>

Expand Down
9 changes: 7 additions & 2 deletions payment.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
}
.form .checkout-btn {
margin-top: 20px;
padding: 20px 0;
padding: 20px 200px 20px 20px ;
border-radius: 25px;
font-weight: 700;
transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
Expand Down Expand Up @@ -115,4 +115,9 @@
min-height: 100vh;
padding-bottom: 20px;
}


a{
text-decoration: none;
justify-content: center;
align-items: center;
}
4 changes: 2 additions & 2 deletions payment.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Payment Gateway</title>
<link rel="stylesheet" href="payment.css">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="footer.css">
Expand Down Expand Up @@ -58,7 +58,7 @@
/>
</label>
</div>
<input class="checkout-btn" type="button" value="Checkout" />
<a href="http://127.0.0.1:5500/cart.html" > <span class="checkout-btn" type="button" value="Checkout" > Checkout </span></a>
</form>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"
Expand Down