/
ankarr
/
web-nodejs-labs
Обзор
Документация
Войти
/
ankarr
/
web-nodejs-labs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
public/lab9/task3/styles.css
69 строк
1 KB
unknown
lab 10
16 дек 2025, 10:39
16 дек 2025, 10:39
0259f91
Код
Авторство
О чём код?
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; } .product-card { border: 1px solid var(--border); border-radius: 8px; padding: 15px; text-align: center; } .product-title { font-weight: bold; margin: 10px 0; min-height: 40px; } .product-price { color: #27ae60; font-size: 18px; font-weight: bold; margin: 10px 0; } .product-amount { color: #7f8c8d; font-size: 14px; margin-bottom: 15px; } .cart-controls { display: flex; justify-content: center; gap: 10px; margin-top: 10px; } .quantity-select { padding: 6px; border: 1px solid var(--border); border-radius: 4px; } .cart-summary { background: rgba(138, 43, 226, 0.05); padding: 20px; border-radius: 8px; margin-top: 20px; } .cart-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); } .cart-badge { background: #e74c3c; color: white; padding: 4px 12px; border-radius: 20px; font-size: 14px; font-weight: bold; text-decoration: none; }