diff --git a/index.html b/index.html
new file mode 100644
index 000000000..b36c1c25c
--- /dev/null
+++ b/index.html
@@ -0,0 +1,198 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ YardSale Store
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/main.js b/main.js
new file mode 100644
index 000000000..4b37d8c99
--- /dev/null
+++ b/main.js
@@ -0,0 +1,127 @@
+const navEmail = document.querySelector('.navbar-email')
+const desktopMenu = document.querySelector('.desktop-menu')
+const mobileMenuBtn = document.querySelector('.menu')
+const mobileMenu = document.querySelector('.mobile-menu')
+const shoppingCart = document.querySelector('.navbar-shopping-cart')
+const shoppingCartContainer = document.querySelector('#shopping-cart-container')
+const cardsContainer = document.querySelector('.cards-container')
+const productDetail = document.querySelector('.product-detail')
+const productDetailClose = document.querySelector('.product-detail-close')
+
+navEmail.addEventListener('click', toggleDesktopMenu)
+mobileMenuBtn.addEventListener('click', toggleMobileMenu)
+shoppingCart.addEventListener('click', toggleShoppingCartContainer)
+productDetailClose.addEventListener('click', closeProductDetail)
+
+function toggleDesktopMenu() {
+ const shoppingCartContainerClosed = shoppingCartContainer.classList.contains('inactive')
+
+ if (!shoppingCartContainerClosed) {
+ toggleShoppingCartContainer()
+ }
+
+ closeProductDetail()
+
+ desktopMenu.classList.toggle('inactive')
+}
+
+function toggleMobileMenu() {
+ const shoppingCartContainerClosed = shoppingCartContainer.classList.contains('inactive')
+
+ if (!shoppingCartContainerClosed) {
+ toggleShoppingCartContainer()
+ }
+
+ closeProductDetail()
+
+ mobileMenu.classList.toggle('inactive')
+}
+
+function toggleShoppingCartContainer() {
+ const mobileMenuClosed = mobileMenu.classList.contains('inactive')
+ const desktopMenuClosed = desktopMenu.classList.contains('inactive')
+
+ if (!mobileMenuClosed) {
+ toggleMobileMenu()
+ }
+
+ if (!desktopMenuClosed) {
+ toggleDesktopMenu()
+ }
+
+ closeProductDetail()
+
+ shoppingCartContainer.classList.toggle('inactive')
+}
+
+function openProductDetail() {
+ const desktopMenuClosed = desktopMenu.classList.contains('inactive')
+ const mobileMenuClosed = mobileMenu.classList.contains('inactive')
+ const shoppingCartContainerClosed = shoppingCartContainer.classList.contains('inactive')
+
+ if (!desktopMenuClosed) {
+ toggleDesktopMenu()
+ }
+
+ if (!mobileMenuClosed) {
+ toggleMobileMenu()
+ }
+
+ if (!shoppingCartContainerClosed) {
+ toggleShoppingCartContainer()
+ }
+
+ productDetail.classList.remove('inactive')
+}
+
+function closeProductDetail() {
+ productDetail.classList.add('inactive')
+}
+
+function renderProducts(productList) {
+ for (product of productList) {
+ const productCard = document.createElement('div')
+ productCard.classList.add('product-card')
+
+ const productImg = document.createElement('img')
+ productImg.setAttribute('src', product.image) // forma 1
+ productImg.addEventListener('click', openProductDetail)
+
+ const productInfo = document.createElement('div')
+ productInfo.classList.add('product-info')
+
+ const productInfoDiv = document.createElement('div')
+
+ const productPrice = document.createElement('p')
+ productPrice.innerText = `$${product.price}`
+
+ const productName = document.createElement('p')
+ productName.innerText = `${product.name}`
+
+ const productInfoFigure = document.createElement('figure')
+
+ const cartImg = document.createElement('img')
+ cartImg.src = './icons/bt_add_to_cart.svg' // forma 2
+
+ productInfoFigure.appendChild(cartImg)
+ productInfoDiv.append(productPrice, productName)
+ productInfo.append(productInfoDiv, productInfoFigure)
+ productCard.append(productImg, productInfo)
+ cardsContainer.appendChild(productCard)
+ }
+}
+
+function main() {
+ let productList = []
+
+ productList = [
+ ...productList,
+ { name: 'Bike', price: 120, image: 'https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940' },
+ { name: 'Bike', price: 120, image: 'https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940' },
+ { name: 'Bike', price: 120, image: 'https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940' }
+ ]
+
+ renderProducts(productList)
+}
+
+main()
\ No newline at end of file
diff --git a/styles.css b/styles.css
new file mode 100644
index 000000000..ec361e564
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,415 @@
+/* general */
+:root {
+ --white: #FFFFFF;
+ --black: #000000;
+ --very-light-pink: #C7C7C7;
+ --text-input-field: #F7F7F7;
+ --hospital-green: #ACD9B2;
+ --sm: 14px;
+ --md: 16px;
+ --lg: 18px;
+}
+
+body {
+ margin: 0;
+ font-family: 'Quicksand', sans-serif;
+}
+
+.inactive {
+ display: none;
+}
+
+/* navbar */
+nav {
+ display: flex;
+ justify-content: space-between;
+ padding: 0 24px;
+ border-bottom: 1px solid var(--very-light-pink);
+}
+
+.menu {
+ display: none;
+}
+
+.logo {
+ width: 100px;
+}
+
+.navbar-left ul,
+.navbar-right ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ align-items: center;
+ height: 60px;
+}
+
+.navbar-left {
+ display: flex;
+}
+
+.navbar-left ul {
+ margin-left: 12px;
+}
+
+.navbar-left ul li a,
+.navbar-right ul li a {
+ text-decoration: none;
+ color: var(--very-light-pink);
+ border: 1px solid var(--white);
+ padding: 8px;
+ border-radius: 8px;
+}
+
+.navbar-left ul li a:hover,
+.navbar-right ul li a:hover {
+ border: 1px solid var(--hospital-green);
+ color: var(--hospital-green);
+}
+
+.navbar-email {
+ color: var(--very-light-pink);
+ font-size: var(--sm);
+ margin-right: 12px;
+ cursor: pointer;
+}
+
+.navbar-shopping-cart {
+ position: relative;
+}
+
+.navbar-shopping-cart div {
+ width: 16px;
+ height: 16px;
+ background-color: var(--hospital-green);
+ border-radius: 50%;
+ font-size: var(--sm);
+ font-weight: bold;
+ position: absolute;
+ top: -6px;
+ right: -3px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+/* desktop menu */
+.desktop-menu {
+ position: absolute;
+ background: var(--white);
+ top: 60px;
+ right: 60px;
+ width: 100px;
+ height: auto;
+ border: 1px solid var(--very-light-pink);
+ border-radius: 6px;
+ padding: 20px 20px 0 20px;
+}
+
+.desktop-menu ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+
+.desktop-menu ul li {
+ text-align: end;
+}
+
+.desktop-menu ul li:nth-child(1),
+.desktop-menu ul li:nth-child(2) {
+ font-weight: bold;
+}
+
+.desktop-menu ul li:last-child {
+ padding-top: 20px;
+ border-top: 1px solid var(--very-light-pink);
+}
+
+.desktop-menu ul li:last-child a {
+ color: var(--hospital-green);
+ font-size: var(--sm);
+}
+
+.desktop-menu ul li a {
+ color: var(--back);
+ text-decoration: none;
+ margin-bottom: 20px;
+ display: inline-block;
+}
+
+/* mobile menu */
+.mobile-menu {
+ background-color: var(--white);
+ position: absolute;
+ top: 61px;
+ padding: 24px;
+ left: 0;
+ width: 100%;
+}
+
+.mobile-menu a {
+ text-decoration: none;
+ color: var(--black);
+ font-weight: bold;
+ /* margin-bottom: 24px; */
+}
+
+.mobile-menu ul {
+ padding: 0;
+ margin: 24px 0 0;
+ list-style: none;
+}
+
+.mobile-menu ul:nth-child(1) {
+ border-bottom: 1px solid var(--very-light-pink);
+}
+
+.mobile-menu ul li {
+ margin-bottom: 24px;
+}
+
+.email {
+ font-size: var(--sm);
+ font-weight: 300 !important;
+}
+
+.sign-out {
+ font-size: var(--sm);
+ color: var(--hospital-green) !important;
+}
+
+/* shoping cart */
+#shopping-cart-container,
+.product-detail {
+ background-color: var(--white);
+ width: 360px;
+ padding: 12px;
+ /* 24px */
+ box-sizing: border-box;
+ position: absolute;
+ right: 0;
+}
+
+.title-container {
+ display: flex;
+}
+
+.title-container img {
+ transform: rotate(180deg);
+ margin-right: 14px;
+}
+
+.title {
+ font-size: var(--lg);
+ font-weight: bold;
+}
+
+.order {
+ display: grid;
+ grid-template-columns: auto 1fr;
+ gap: 16px;
+ align-items: center;
+ background-color: var(--text-input-field);
+ margin-bottom: 24px;
+ border-radius: 8px;
+ padding: 0 24px;
+}
+
+.order p:nth-child(1) {
+ display: flex;
+ flex-direction: column;
+}
+
+.order p span:nth-child(1) {
+ font-size: var(--md);
+ font-weight: bold;
+}
+
+.order p:nth-child(2) {
+ text-align: end;
+ font-weight: bold;
+}
+
+.shopping-cart {
+ display: grid;
+ grid-template-columns: auto 1fr auto auto;
+ gap: 16px;
+ margin-bottom: 24px;
+ align-items: center;
+}
+
+.shopping-cart figure {
+ margin: 0;
+}
+
+.shopping-cart figure img {
+ width: 70px;
+ height: 70px;
+ border-radius: 20px;
+ object-fit: cover;
+}
+
+.shopping-cart p:nth-child(2) {
+ color: var(--very-light-pink);
+}
+
+.shopping-cart p:nth-child(3) {
+ font-size: var(--md);
+ font-weight: bold;
+}
+
+/* shoping cart & product detail container */
+.primary-button {
+ background-color: var(--hospital-green);
+ border-radius: 8px;
+ border: none;
+ color: var(--white);
+ width: 100%;
+ cursor: pointer;
+ font-size: var(--md);
+ font-weight: bold;
+ height: 50px;
+}
+
+/* product detail container */
+.product-detail-close {
+ background: var(--white);
+ width: 14px;
+ height: 14px;
+ position: absolute;
+ top: 24px;
+ left: 24px;
+ z-index: 2;
+ padding: 12px;
+ border-radius: 50%;
+}
+
+.product-detail-close:hover {
+ cursor: pointer;
+}
+
+.product-detail>img:nth-child(2) {
+ width: 100%;
+ height: 360px;
+ object-fit: cover;
+ border-radius: 0 0 20px 20px;
+}
+
+.product-detail .product-info {
+ margin: 24px 24px 0 24px;
+}
+
+.product-detail .product-info p:nth-child(1) {
+ font-weight: bold;
+ font-size: var(--md);
+ margin-top: 0;
+ margin-bottom: 4px;
+}
+
+.product-detail .product-info p:nth-child(2) {
+ color: var(--very-light-pink);
+ font-size: var(--md);
+ margin-top: 0;
+ margin-bottom: 36px;
+}
+
+.product-detail .product-info p:nth-child(3) {
+ color: var(--very-light-pink);
+ font-size: var(--sm);
+ margin-top: 0;
+ margin-bottom: 36px;
+}
+
+.add-to-cart-button {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+/* product list */
+.cards-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, 240px);
+ gap: 26px;
+ place-content: center;
+ margin-top: 20px;
+}
+
+.cards-container .product-card {
+ width: 240px;
+}
+
+.cards-container .product-card img {
+ width: 240px;
+ height: 240px;
+ border-radius: 20px;
+ object-fit: cover;
+}
+
+.cards-container .product-info {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-top: 12px;
+}
+
+.cards-container .product-info figure {
+ margin: 0;
+}
+
+.cards-container .product-info figure img {
+ width: 35px;
+ height: 35px;
+}
+
+.cards-container .product-info div p:nth-child(1) {
+ font-weight: bold;
+ font-size: var(--md);
+ margin-top: 0;
+ margin-bottom: 4px;
+}
+
+.cards-container .product-info div p:nth-child(2) {
+ font-size: var(--sm);
+ margin-top: 0;
+ margin-bottom: 0;
+ color: var(--very-light-pink);
+}
+
+@media (max-width: 640px) {
+ .menu {
+ display: block;
+ }
+
+ .navbar-email,
+ .navbar-left ul,
+ .desktop-menu {
+ display: none;
+ }
+
+ #shopping-cart-container,
+ .product-detail {
+ width: 100%;
+ }
+
+ .cards-container {
+ grid-template-columns: repeat(auto-fill, 140px);
+ }
+
+ .cards-container .product-card {
+ width: 140px;
+ }
+
+ .cards-container .product-card img {
+ width: 140px;
+ height: 140px;
+ }
+}
+
+@media (min-width: 641px) {
+ .mobile-menu {
+ display: none;
+ }
+}
\ No newline at end of file