Skip to content

Fusion de los componentes de la vista principal #67

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
138 changes: 0 additions & 138 deletions clase11.html

This file was deleted.

1 change: 1 addition & 0 deletions clase13.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
box-sizing: border-box;
position: absolute;
right: 0;
cursor: pointer;
}
.title-container {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion clase6.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
grid-template-columns: repeat(auto-fill, 240px);
gap: 26px;
place-content: center;
}
.product-card {
width: 240px;
}
Expand Down
39 changes: 12 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap" rel="stylesheet">

<link rel="stylesheet" href="./styles.css">

<title>YardSale: tienda online de cositas chidas</title>

<title>YardSale: Tienda online</title>

</head>
<body>
<nav>
Expand Down Expand Up @@ -51,7 +52,6 @@
</li>
</ul>
</div>

<div class="desktop-menu inactive">
<ul>
<li>
Expand Down Expand Up @@ -111,9 +111,9 @@
</li>
</ul>
</div>
</nav>

<aside id="shoppingCartContainer" class="inactive">
</nav>
<aside id="shoppinCartContainer" class="inactive">
<div class="title-container">
<img src="./icons/flechita.svg" alt="arrow">
<p class="title">My order</p>
Expand Down Expand Up @@ -161,8 +161,8 @@
</div>
</aside>

<aside id="productDetail" class="inactive">
<div class="product-detail-close">
<aside id="product-detail" class="inactive">
<div class="product-detail-close" >
<img src="./icons/icon_close.png" alt="close">
</div>
<img src="https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="bike">
Expand All @@ -177,25 +177,10 @@
</div>
</aside>

<section class="main-container">
<section class="main-container">
<div class="cards-container">

<!-- <div class="product-card">
<img src="https://images.pexels.com/photos/276517/pexels-photo-276517.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="">
<div class="product-info">
<div>
<p>$120,00</p>
<p>Bike</p>
</div>
<figure>
<img src="./icons/bt_add_to_cart.svg" alt="">
</figure>
</div>
</div> -->

</div>
</section>
</section>

<script src="./main.js"></script>
</body>
</html>
</html>
Loading