💄 feat: ProductCard-addToCart

This commit is contained in:
marleyrae 2023-05-28 21:27:20 -07:00
parent efe400764a
commit b765836e09
2 changed files with 25 additions and 3 deletions

View file

@ -54,7 +54,10 @@
<span class="ProductCard-price--discounted">$169.99</span> <span class="ProductCard-price--discounted">$169.99</span>
</div> </div>
<button class="ProductCard-addToCart">Add to Cart</button> <button class="ProductCard-addToCart">
<img src="images/icon-cart.svg" alt="Cart icon">
<span>Add to Cart</span>
</button>
</section> </section>
</main> </main>
</div> </div>

View file

@ -2,6 +2,7 @@
:root { :root {
--c-darkCyan: hsl(158, 36%, 37%); --c-darkCyan: hsl(158, 36%, 37%);
--c-darkerCyan: #193e30;
--c-cream: hsl(30, 38%, 92%); --c-cream: hsl(30, 38%, 92%);
--c-darkBlue: hsl(212, 21%, 14%); --c-darkBlue: hsl(212, 21%, 14%);
@ -28,7 +29,7 @@ body {
background-color: var(--c-cream); background-color: var(--c-cream);
font-family: var(--t-family-body); font-family: var(--t-family-body);
font-weight: var(--t-weight-body); font-weight: var(--t-weight-body);
color: hsla(0, 0%, 0%, 60%); color: var(--c-grayBlue);
} }
.wrapper { .wrapper {
@ -66,7 +67,7 @@ body {
.ProductCard-title { .ProductCard-title {
font-family: var(--t-family-display); font-family: var(--t-family-display);
font-size: var(--t-size-display); font-size: var(--t-size-display);
color: black; color: var(--c-darkBlue);
margin-top: 0; margin-top: 0;
margin-bottom: 1rem; margin-bottom: 1rem;
} }
@ -92,3 +93,21 @@ body {
text-decoration: line-through; text-decoration: line-through;
margin-left: 1.25rem; margin-left: 1.25rem;
} }
.ProductCard-addToCart {
width: 100%;
height: 3rem;
margin-top: 1rem;
border: 0;
background-color: var(--c-darkCyan);
color: white;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
column-gap: .75rem;
}
.ProductCard-addToCart:hover {
background-color: var(--c-darkerCyan);
}