/
olegk2001
/
CryptoApp
Обзор
Документация
Войти
/
olegk2001
/
CryptoApp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
dev/static/style.css
100 строк
2 KB
Oleg K
Initial sanitized commit
08 июн 2026, 10:08
08 июн 2026, 10:08
104414c
Код
Авторство
О чём код?
/* Общий стиль страницы */ body { margin: 0; padding: 0; font-family: Arial, sans-serif; background-color: #f5f5f5; display: flex; justify-content: center; align-items: center; height: 100vh; } /* Контейнер чата */ .chat-container { width: 100%; max-width: 600px; height: 90%; background-color: #ffffff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); border-radius: 8px; display: flex; flex-direction: column; } /* Заголовок чата */ .chat-header { background-color: #007bff; color: #ffffff; text-align: center; padding: 10px; font-size: 18px; font-weight: bold; } /* Область сообщений */ .chat-messages { flex: 1; padding: 10px; overflow-y: auto; background-color: #f9f9f9; display: flex; flex-direction: column; } /* Сообщения */ .message { max-width: 40%; margin: 5px 0; padding: 10px 15px; border-radius: 15px; font-size: 14px; word-wrap: break-word; } /* Сообщения слева (полученные) */ .message.received { background-color: #e0e0e0; align-self: flex-start; margin-left: 10px; } /* Сообщения справа (отправленные) */ .message.sent { background-color: #007bff; color: #ffffff; align-self: flex-end; margin-right: 10px; } /* Поле ввода и кнопка */ .chat-input { display: flex; padding: 10px; background-color: #ffffff; border-top: 1px solid #e0e0e0; } .chat-input input { flex: 1; padding: 10px; border: 1px solid #e0e0e0; border-radius: 20px; outline: none; font-size: 14px; margin-right: 10px; } .chat-input button { background-color: #007bff; color: #ffffff; border: none; border-radius: 20px; padding: 10px 20px; cursor: pointer; font-size: 14px; } .chat-input button:hover { background-color: #0056b3; }