Skip to content
Open
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
26 changes: 26 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
body{
background: white;
padding: 60px;
}

.cartItems{
color: black;
}
.description{
color: gray
}

.cost{
text-align: right;
font-size: 40px;
}

#title{
padding: 15px;
background-color: rgb(248, 170, 2);
font-size: 40px;
}

#totalCost{
font-size: 40px;
}
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>

<header id = 'title'>
<img src="images/cart.svg" alt="">
Shopping Cart</header>

<div id="content"></div>

<div id = 'totalCost'>Sub Total: $4019852642180427501274098237091832701389527091248762847.23</div>

<script src="js/app.js"></script>
</body>
</html>
34 changes: 34 additions & 0 deletions js/app.js

Large diffs are not rendered by default.