This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/css/product.css
2025-01-04 14:04:53 +03:00

39 lines
740 B
CSS

/* Карточка товара */
.product-card {
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 250px;
padding: 15px;
text-align: center;
margin: 0 20px;
transition: transform 0.3s ease;
}
/* Эффект при наведении */
.product-card:hover {
transform: scale(1.05);
}
/* Изображение товара */
.product-card img {
width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 15px;
}
/* Название товара */
.name {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
/* Цена товара */
.price {
font-size: 16px;
color: #007bff;
margin-bottom: 15px;
}