/
9sber
/
author_search
Обзор
Документация
Войти
/
9sber
/
author_search
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
develop_baseline
client/src/AuthorAnalysis.module.css
207 строк
3 KB
Knohhonk
Dev: paper preprocessing with VLM
14 ноя 2025, 12:25
14 ноя 2025, 12:25
52d0497
Код
Авторство
О чём код?
.page { background-color: #f9fbfd; min-height: 100vh; padding: 60px 20px; font-family: "Inter", sans-serif; color: #1a1a1a; text-align: center; } /* ---------- Верхний блок ---------- */ .header { margin-bottom: 60px; } .backLink { display: inline-flex; align-items: center; gap: 6px; color: #666; font-weight: 500; text-decoration: none; margin-bottom: 20px; } .backLink:hover { text-decoration: underline; } .sectionTitle h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; } .sectionTitle p { font-size: 18px; margin-bottom: 4px; color: #444; } .sectionTitle span { font-size: 16px; color: #666; } .sectionTitle .badge { display: inline-block; color: #9b5cff; font-weight: 600; margin-bottom: 8px; } /* ---------- Форма ---------- */ .form { background: #fff; border-radius: 20px; max-width: 1100px; margin: 0 auto 60px; padding: 40px; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05); text-align: left; } .formLabel { font-weight: 600; font-size: 18px; display: block; margin-bottom: 4px; } .formSub { font-size: 14px; color: #666; margin-bottom: 20px; } .textArea { width: 100%; min-height: 140px; resize: vertical; border-radius: 10px; border: 1px solid #dcdfe6; padding: 12px 14px; font-size: 15px; outline: none; margin-bottom: 24px; transition: border 0.2s ease; } .textArea:focus { border-color: #5a6dfc; } .uploadBox { margin-bottom: 24px; } .uploadLabel { display: flex; align-items: center; justify-content: center; gap: 8px; border: 2px dashed #c5c9e0; border-radius: 12px; padding: 16px; color: #555; cursor: pointer; transition: all 0.2s ease; } .uploadLabel:hover { background-color: #f0f4ff; border-color: #5a6dfc; } .fileInput { display: none; } .submitBtn { display: block; width: 100%; background-color: #5a6dfc; color: #fff; border: none; border-radius: 10px; padding: 14px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; } .submitBtn:hover { background-color: #4859e2; } /* ---------- Карточки ---------- */ .cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; } .card { /*color: #fff;*/ border-radius: 20px; padding: 30px 28px; max-width: 320px; text-align: left; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1); flex: 1; min-width: 260px; } .card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; } .card p { font-size: 15px; line-height: 1.5; } /* Цвета карточек */ .blue { background: #eef5ff; color: #2f6dff; border: 1px solid #2f6dff; } .green { background: #e9f9f0; color: #12b974; border: 1px solid #12b974; } .purple { background: #fff5e5; color: #c7b10c; border: 1px solid #c7b10c; } /* ---------- Адаптив ---------- */ @media (max-width: 768px) { .sectionTitle h1 { font-size: 28px; } .form { padding: 24px; } .card { max-width: 100%; } } .card h3 { display: flex; align-items: center; gap: 8px; }