/
ankarr
/
web-nodejs-labs
Обзор
Документация
Войти
/
ankarr
/
web-nodejs-labs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
public/lab8/task2/styles.css
125 строк
2 KB
unknown
lab 10
16 дек 2025, 10:39
16 дек 2025, 10:39
0259f91
Код
Авторство
О чём код?
.data-container { min-height: 200px; background: var(--card-bg); border-radius: 8px; padding: 15px; border: 1px solid var(--border); } .placeholder { color: #7f8c8d; font-style: italic; text-align: center; padding: 40px 0; } .loading { color: var(--primary); text-align: center; font-style: italic; padding: 40px 0; } .error { color: var(--error); text-align: center; padding: 20px; background: rgba(231, 76, 60, 0.1); border-radius: 8px; margin: 10px 0; } .controls { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; } .controls .btn { padding: 12px 24px; font-size: 16px; } .group, .stadium { margin-bottom: 20px; padding: 20px; border-radius: 12px; background: rgba(138, 43, 226, 0.05); border: 1px solid var(--border); box-sizing: border-box; } .group h3, .stadium h3 { color: var(--primary); margin-top: 0; margin-bottom: 15px; font-size: 20px; } .team-list, .match-list { list-style: none; padding: 0; margin: 10px 0; } .team-list li, .match-list li { padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.5; font-size: 16px; } .team-list li:last-child, .match-list li:last-child { border-bottom: none; } .btn { background: linear-gradient(to right, var(--primary), var(--primary-dark)); color: white; border: none; padding: 12px 24px; border-radius: 8px; cursor: pointer; font-size: 16px; margin: 5px; transition: opacity 0.2s, transform 0.2s; font-weight: 600; } .btn:hover { opacity: 0.95; transform: translateY(-2px); } .btn-success { background: linear-gradient(to right, #2ecc71, #27ae60); } .wide-container { max-width: 600px; width: 100%; margin: 0 auto; } @media (max-width: 768px) { .wide-container { max-width: 98%; } .controls .btn { width: 100%; max-width: 300px; padding: 15px; } .group, .stadium { padding: 15px; } .team-list li, .match-list li { font-size: 14px; } }