-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed btn hover color, deleted some unused images, added new progress bar svg's checkout pages (text converted to path)
- Loading branch information
Showing
44 changed files
with
377 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="https://use.typekit.net/gzy8fgh.css" /> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap"/> | ||
<link rel="stylesheet" href="CSS/index.css" /> | ||
<link rel="stylesheet" href="CSS/checkout.css" /> | ||
<title>Shipping | Rainy Days</title> | ||
<meta name="description" content="Shopping cart. Confirm shipping address - Rainy Days"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
</head> | ||
<!-------------------------------------- header ---------------------------------------------> | ||
<body> | ||
<div class="top-line"></div> | ||
<div class="body"> | ||
<header> | ||
<a href="index.html"> | ||
<img class="logo" src="images/RainyDays_Logo.png" alt="rainy days logo"/> | ||
</a> | ||
<div class="topnav"> | ||
<div class="favorites item"><img src="images/icons/like.svg" alt="favorites"/></div> | ||
<div class="profile item"><img src="images/icons/profile.svg" alt="profile"/></div> | ||
<div class="cart item"><a href="checkout.html"><img src="images/icons/cart.svg" alt="shopping cart"></a></div> | ||
<div class="search item"><img src="images/icons/search.svg" alt="search"/></div> | ||
</div> | ||
</header> | ||
<!---------------------------- main content ---------------------------------------> | ||
<main> | ||
<div class="jacket-container"> | ||
<div class="top-bar"> | ||
<h1 class="h1-about">Shopping Cart</h1> | ||
<img class="progress-bar" src="images/components/checkout-3.svg" alt="step 2: enter shipping address"/> | ||
</div> | ||
<div class="line"></div> | ||
<div class="info-line"> | ||
<p>Product Details</p> | ||
<p class="price">Price</p> | ||
<p>Quantity</p> | ||
<p>Total Price</p> | ||
</div> | ||
<div class="cart-line"></div> | ||
<div class="jacket-specs"> | ||
<img class="thumb-2" src="images/jacket_1-1.jpg" alt="men's Forest Jacket"/> | ||
<div> | ||
<p><b>Forest Jacket</b></p> | ||
<p>Size: M</p> | ||
</div> | ||
<p class="price">$54</p> | ||
<img class="quantity" src="images/quantity.svg" /> | ||
<p>$54</p> | ||
<div></div> | ||
</div> | ||
<div class="cart-line"></div> | ||
<div class="jacket-specs"> | ||
<img class="thumb-2" src="images/jacket_2-1.jpg" alt="Men's Edge Jacket"/> | ||
<div> | ||
<p><b>Edge Jacket</b></p> | ||
<p>Size: M</p> | ||
</div> | ||
<p class="price">$58</p> | ||
<img class="quantity" src="images/quantity.svg" /> | ||
<p>$58</p> | ||
<div></div> | ||
</div> | ||
<div class="cart-line"></div> | ||
<div class="sum"> | ||
<div></div> | ||
<div> | ||
<p>Total</p> | ||
<p>Shipping</p> | ||
<p><b>Sum Total</b></p> | ||
</div> | ||
<div> | ||
<p>$112</p> | ||
<p>$10</p> | ||
<p><b>$122</b></p> | ||
</div> | ||
</div> | ||
<div class="back-continue"> | ||
<a href="checkout-2.html"><b><p><--Previuos step</p></b></a> | ||
<a class="back" href="index.html"><b><--Back to Shopping</b></a> | ||
<p class="continue"><b>Continue</b></p> | ||
</div> | ||
</div> | ||
|
||
<section class="login"> | ||
<h5>Payment Details</h5> | ||
<img src="images/components/card.svg" alt="credit card"> | ||
<div class="card-name"> | ||
<p class="small-gray-text">Name on card</p> | ||
<p>John Doe</p> | ||
</div> | ||
<div class="card-number"> | ||
<p class="small-gray-text">Card Number</p> | ||
<p>•••• •••• •••• 1564</p> | ||
</div> | ||
<div class="card-details"> | ||
<div class="expiration-date"> | ||
<p class="small-gray-text">Expiration Date</p> | ||
<p>04/22</p> | ||
</div> | ||
<div class="ccv"> | ||
<p class="small-gray-text">CCV</p> | ||
<p>•••</p> | ||
</div> | ||
</div> | ||
<p><a class="btn-large loginBtn" href="checkout-4.html">pay now</a></p> | ||
</section> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="https://use.typekit.net/gzy8fgh.css" /> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap"/> | ||
<link rel="stylesheet" href="CSS/index.css" /> | ||
<link rel="stylesheet" href="CSS/checkout.css" /> | ||
<title>Shipping | Rainy Days</title> | ||
<meta name="description" content="Shopping cart. Confirm shipping address - Rainy Days"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
</head> | ||
<!-------------------------------------- header ---------------------------------------------> | ||
<body> | ||
<div class="top-line"></div> | ||
<div class="body"> | ||
<header> | ||
<a href="index.html"> | ||
<img class="logo" src="images/RainyDays_Logo.png" alt="rainy days logo"/> | ||
</a> | ||
<div class="topnav"> | ||
<div class="favorites item"><img src="images/icons/like.svg" alt="favorites"/></div> | ||
<div class="profile item"><img src="images/icons/profile.svg" alt="profile"/></div> | ||
<div class="cart item"><a href="checkout.html"><img src="images/icons/cart.svg" alt="shopping cart"></a></div> | ||
<div class="search item"><img src="images/icons/search.svg" alt="search"/></div> | ||
</div> | ||
</header> | ||
<!---------------------------- main content ---------------------------------------> | ||
<main> | ||
<div class="jacket-container"> | ||
<div class="top-bar"> | ||
<h1 class="h1-about">Success!</h1> | ||
<img class="progress-bar" src="images/components/checkout-4.svg" alt="step 2: enter shipping address"/> | ||
</div> | ||
<div class="line"></div> | ||
<div class="info-line"> | ||
<p>Product Details</p> | ||
<p class="price">Price</p> | ||
<p>Quantity</p> | ||
<p>Total Price</p> | ||
</div> | ||
<div class="cart-line"></div> | ||
<div class="jacket-specs"> | ||
<img class="thumb-2" src="images/jacket_1-1.jpg" alt="men's Forest Jacket"/> | ||
<div> | ||
<p><b>Forest Jacket</b></p> | ||
<p>Size: M</p> | ||
</div> | ||
<p class="price">$54</p> | ||
<img class="quantity" src="images/quantity.svg" /> | ||
<p>$54</p> | ||
<div></div> | ||
</div> | ||
<div class="cart-line"></div> | ||
<div class="jacket-specs"> | ||
<img class="thumb-2" src="images/jacket_2-1.jpg" alt="Men's Edge Jacket"/> | ||
<div> | ||
<p><b>Edge Jacket</b></p> | ||
<p>Size: M</p> | ||
</div> | ||
<p class="price">$58</p> | ||
<img class="quantity" src="images/quantity.svg" /> | ||
<p>$58</p> | ||
<div></div> | ||
</div> | ||
<div class="cart-line"></div> | ||
<div class="back-continue confirmation"> | ||
<a class="back" href="index.html"><b><--Back to Shopping</b></a> | ||
</div> | ||
</div> | ||
|
||
<section class="login"> | ||
<h5>Order no #23950</h5> | ||
<h3>Thanks for your order!</h3> | ||
<p>Your new jacket will be with you very soon. We’ll send you an e-mail when it’s on it’s way!</p> | ||
<p>You can also log into your account to get updates and manage your order.</p> | ||
<form> | ||
<h4>Want to get discounts, news and more straight to your inbox?</h4> | ||
<label for="email">enter your e-mail</label> | ||
<input type="email" name="email"> | ||
<input type="submit" class="btn-large loginBtn" value="sign up!"> | ||
</form> | ||
</section> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Diff not rendered.
Oops, something went wrong.