/
grigorin
/
InterviewHelper
Обзор
Документация
Войти
/
grigorin
/
InterviewHelper
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/sendButton.css
100 строк
2 KB
Grigory Nevarov
Initial commit: CTO Interview Helper app with React, TypeScript, Redux
30 ноя 2025, 20:47
30 ноя 2025, 20:47
0680f45
Код
Авторство
О чём код?
.send-block { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; } .send-block__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; } .send-button { align-self: flex-start; padding: 0.85rem 1.75rem; border-radius: 999px; border: none; background: linear-gradient(120deg, #8f00ff, #f5d300); color: #0c0b22; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; box-shadow: 0 0 20px rgba(143, 0, 255, 0.5), 0 0 40px rgba(245, 211, 0, 0.4); transition: transform 0.2s ease, opacity 0.2s ease; } .send-button:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; } .send-button:not(:disabled):hover { transform: translateY(-3px) scale(1.01); } .clear-button { padding: 0.85rem 1.4rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.35); background: transparent; color: #f5f6ff; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease; } .clear-button:disabled { opacity: 0.4; cursor: not-allowed; } .clear-button:not(:disabled):hover { transform: translateY(-3px); border-color: #f5d300; } .send-status { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); } .results-table__wrapper { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(9, 251, 211, 0.2); background: rgba(6, 8, 40, 0.8); box-shadow: inset 0 0 30px rgba(8, 13, 60, 0.6); margin-top: 0.5rem; } .results-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; } .results-table th, .results-table td { padding: 0.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); text-align: left; } .results-table th { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: #09fbd3; } .results-table tr:last-child td { border-bottom: none; }