77 lines
1.3 KiB
CSS
77 lines
1.3 KiB
CSS
body {
|
|
background-color: transparent !important;
|
|
margin: 0;
|
|
color: #f0f0f0;
|
|
font-family: "Inter", sans-serif;
|
|
}
|
|
|
|
.window-shell {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
padding: 15px;
|
|
}
|
|
|
|
.opaque-bg {
|
|
background-color: #212121;
|
|
}
|
|
|
|
.rounded-container {
|
|
background-color: #212121;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.dark-input {
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
|
|
/* Colors & Background */
|
|
background-color: #1e1e1e;
|
|
color: #ffffff;
|
|
border: 1px solid #333333;
|
|
border-radius: 8px; /* Soft rounded corners */
|
|
|
|
/* Typography */
|
|
font-family: "Inter", sans-serif;
|
|
font-size: 16px;
|
|
|
|
/* Smooth Transition */
|
|
transition: all 0.3s ease;
|
|
outline: none;
|
|
}
|
|
|
|
.response-area {
|
|
width: 100%;
|
|
height: 300px;
|
|
overflow-y: auto;
|
|
gap: 10px;
|
|
flex-direction: column;
|
|
display: flex;
|
|
}
|
|
|
|
.msg {
|
|
background-color: #303030;
|
|
border-radius: 8px;
|
|
padding: 8px 16px;
|
|
margin: 8px 0;
|
|
animation: slideIn 0.3s ease-out;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.msg-user {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(10px) scale(0.95);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|