test-space / style.css
KingNish's picture
Implement product page, cart, and checkout functionality with icons and animations (#28)
c821e69 verified
raw
history blame contribute delete
417 Bytes
.add-to-cart-button:hover {
transform: scale(1.05);
transition: transform 0.2s ease-in-out;
}
/* Add transition to the cart icon */
nav .container > div:nth-child(3) > a {
transition: color 0.3s ease;
}
nav .container > div:nth-child(3) > a:hover {
color: #FFFF00;
}
.product-card {
transition: transform 0.3s ease;
}
.product-card:hover {
transform: scale(1.03);
}