/
esiart
/
project1
Обзор
Документация
Войти
/
esiart
/
project1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/App.css
130 строк
2 KB
aleksey
Мой первый коммит
19 фев 2025, 22:40
19 фев 2025, 22:40
d20331b
Код
Авторство
О чём код?
/* Основные стили */ body { font-family: 'Arial', sans-serif; background-color: #f4f6f9; margin: 0; padding: 0; } .App { max-width: 1200px; margin: 0 auto; padding: 40px; background-color: #fff; } header { text-align: center; margin-bottom: 40px; } .title { font-size: 42px; font-weight: bold; color: #222; margin-bottom: 10px; } .categories { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; } .category-btn { background-color: #0066cc; color: white; border: none; padding: 12px 25px; font-size: 18px; font-weight: bold; border-radius: 25px; cursor: pointer; transition: all 0.3s ease; } .category-btn:hover { background-color: #004c99; transform: scale(1.1); } .loading { text-align: center; font-size: 20px; color: #777; margin-bottom: 30px; } .news-list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-top: 30px; } .news-item { background-color: #fff; border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; } .news-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); } .news-image { width: 100%; height: 200px; object-fit: cover; } .news-content { padding: 20px; } .news-title { font-size: 22px; font-weight: bold; color: #333; margin-bottom: 10px; } .news-description { font-size: 16px; color: #555; margin-bottom: 20px; } .news-link { font-size: 16px; color: #0066cc; text-decoration: none; transition: color 0.3s ease; } .news-link:hover { color: #004c99; text-decoration: underline; } .no-news { text-align: center; font-size: 20px; color: #777; } @media (max-width: 768px) { .news-list { grid-template-columns: 1fr 1fr; } } @media (max-width: 480px) { .news-list { grid-template-columns: 1fr; } }