This commit is contained in:
User
2025-01-04 14:04:53 +03:00
parent cdca2437b9
commit 4393a97a95
41 changed files with 23557 additions and 2 deletions

38
frontend/css/product.css Normal file
View File

@@ -0,0 +1,38 @@
/* Карточка товара */
.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;
}