117 lines
2.6 KiB
CSS
117 lines
2.6 KiB
CSS
/* eveai_chat.css */
|
|
:root {
|
|
--user-message-bg: #d1e7dd; /* Default user message background color */
|
|
--bot-message-bg: #ffffff; /* Default bot message background color */
|
|
--chat-bg: #f8f9fa; /* Default chat background color */
|
|
--algorithm-color-default: #ccc; /* Default algorithm indicator color */
|
|
--algorithm-color-alg1: #f00; /* Algorithm 1 color */
|
|
--algorithm-color-alg2: #0f0; /* Algorithm 2 color */
|
|
--algorithm-color-alg3: #00f; /* Algorithm 3 color */
|
|
--status-line-color: #6c757d; /* Color for the status line text */
|
|
--status-line-bg: #e9ecef; /* Background color for the status line */
|
|
--status-line-height: 30px; /* Fixed height for the status line */
|
|
}
|
|
|
|
.chat-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 99vh;
|
|
/*max-height: 100vh;*/
|
|
max-width: 600px;
|
|
margin: auto;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background-color: var(--chat-bg);
|
|
}
|
|
|
|
.messages-area {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 10px;
|
|
background-color: var(--bot-message-bg);
|
|
}
|
|
|
|
.message {
|
|
max-width: 90%;
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.message.user {
|
|
margin-left: auto;
|
|
background-color: var(--user-message-bg);
|
|
}
|
|
|
|
.message.bot {
|
|
background-color: var(--bot-message-bg);
|
|
}
|
|
|
|
.message-icons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.message-icons i {
|
|
margin-left: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.question-area {
|
|
padding: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: var(--user-message-bg);
|
|
}
|
|
|
|
.question-area input {
|
|
flex: 1;
|
|
border: none;
|
|
padding: 10px;
|
|
border-radius: 15px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.question-area button {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
color: #007bff;
|
|
}
|
|
|
|
/* New CSS for the status-line */
|
|
.status-line {
|
|
height: var(--status-line-height); /* Fixed height for the status line */
|
|
padding: 5px 10px;
|
|
background-color: var(--status-line-bg); /* Background color */
|
|
color: var(--status-line-color); /* Text color */
|
|
font-size: 0.9rem; /* Slightly smaller font size */
|
|
text-align: center; /* Centered text */
|
|
border-top: 1px solid #ccc; /* Subtle top border */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Media queries for responsiveness */
|
|
@media (max-width: 768px) {
|
|
.chat-container {
|
|
max-width: 90%; /* Reduce max width on smaller screens */
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.chat-container {
|
|
max-width: 95%; /* Further reduce max width on very small screens */
|
|
}
|
|
|
|
.question-area input {
|
|
font-size: 0.9rem; /* Adjust input font size for smaller screens */
|
|
}
|
|
|
|
.status-line {
|
|
font-size: 0.8rem; /* Adjust status line font size for smaller screens */
|
|
}
|
|
}
|