/
ankarr
/
web-nodejs-labs
Обзор
Документация
Войти
/
ankarr
/
web-nodejs-labs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
public/lab8/task1/styles.css
114 строк
2 KB
unknown
lab 10
16 дек 2025, 10:39
16 дек 2025, 10:39
0259f91
Код
Авторство
О чём код?
.form-group { margin-bottom: 16px; } label { display: block; margin-bottom: 6px; font-weight: 600; } input[type="text"], select, button { width: 100%; padding: 12px; border: 2px solid var(--border); border-radius: 10px; font-size: 16px; box-sizing: border-box; transition: border-color 0.2s; } .radio-group { display: flex; gap: 20px; flex-wrap: wrap; } .radio-item { display: flex; align-items: center; gap: 8px; } .checkbox-item { display: flex; align-items: center; gap: 12px; margin: 15px 0; } button { font-weight: bold; border: none; cursor: pointer; background: linear-gradient(to right, var(--primary), var(--primary-dark)); color: white; margin-top: 10px; padding: 12px; border-radius: 10px; transition: opacity 0.2s, transform 0.2s; } button:hover { opacity: 0.95; transform: translateY(-2px); } .results { margin-top: 30px; } .result-card { background: #f0e6ff; padding: 20px; border-radius: 12px; margin-bottom: 15px; font-size: 16px; box-shadow: 0 4px 12px rgba(138, 43, 226, 0.1); } [data-theme="dark"] .result-card { background: #332f4a; color: #e0d6ff; box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2); } #projectNameField { display: none; } #projectNameField.show { display: block; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border); } th { background: var(--primary); color: white; font-weight: 600; } .hidden { display: none; } pre { background: var(--card-bg); padding: 15px; border-radius: 8px; border: 1px solid var(--border); font-family: 'Courier New', Courier, monospace; overflow-x: auto; margin: 10px 0; }