/
i.demidoff
/
web-php-js
Обзор
Документация
Войти
/
i.demidoff
/
web-php-js
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
style.css
175 строк
3 KB
Ivan Demidov
new
02 июл 2026, 21:11
02 июл 2026, 21:11
3dbb41b
Код
Авторство
О чём код?
* { box-sizing: border-box; } html { color-scheme: light; forced-color-adjust: none; background-color: #1b1f37; } body { margin: 0; min-height: 100vh; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #252b4b; background: #1f213a; display: grid; place-items: center; padding: 32px; } .feedback-panel { width: 100%; max-width: 540px; background: #ffffff; border-radius: 26px; padding: 30px; box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14); border: 1px solid rgba(34, 40, 72, 0.08); } .feedback-header h1 { margin: 0 0 22px; text-align: center; color: #1b1b2e; font-size: 30px; letter-spacing: 1px; } .feedback-header h1 span { display: inline-block; background: #6d5dff; color: #ffffff; padding: 6px 14px; border-radius: 999px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; } input, textarea { width: 100%; padding: 14px 16px; margin-bottom: 16px; border-radius: 18px; border: 1px solid #d9d9eb; background: #fff; color: #2a2f4f; font-size: 15px; line-height: 1.5; } input::placeholder, textarea::placeholder { color: #9ea2c2; } input:focus, textarea:focus { outline: none; border-color: #7a66ff; box-shadow: 0 0 0 6px rgba(122, 102, 255, 0.14); } textarea { min-height: 150px; resize: vertical; } button { width: 100%; padding: 15px 0; margin-top: 12px; border: none; border-radius: 16px; background: #6d5dff; color: #ffffff; font-size: 16px; font-weight: 700; cursor: pointer; } button:hover { opacity: 0.95; } button:active { transform: scale(0.99); } #result { margin-top: 18px; min-height: 24px; text-align: center; font-weight: 600; color: #3d4069; } #messages-container { width: 100%; max-width: 540px; margin-top: 32px; display: grid; gap: 18px; } .message-card { background: #ffffff; border: 1px solid rgba(122, 102, 255, 0.12); border-radius: 24px; padding: 24px; box-shadow: 0 20px 45px rgba(20, 28, 89, 0.08); } .msg-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; } .msg-header strong { color: #2a2f4f; font-size: 16px; } .msg-date { font-size: 13px; color: #8f94b2; } .msg-text { margin: 0; color: #4b5177; line-height: 1.8; font-size: 15px; } @media (max-width: 600px) { body { padding: 20px; } form { padding: 24px; border-radius: 24px; } .feedback-header h1 { font-size: 24px; margin-bottom: 22px; } input, textarea, button { font-size: 14px; } .message-card { padding: 20px; } }