Spaces:
Sleeping
Sleeping
File size: 3,790 Bytes
e68d4c4 c89a295 e68d4c4 c89a295 e68d4c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
/* Base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #181818;
color: #e0e0e0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.Luna{
margin:0px 65px ;
}
a:link, a:visited {
background-color: #181818;
color:white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
color: blue;
}
/* Chat container */
.chat-container {
margin: 20px auto;
width: 95%;
max-width: 1200px;
height: 85vh;
background-color: #242424;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
}
/* Messages section */
.chat-messages {
flex: 1;
overflow-y: auto;
padding: 1rem;
display: flex;
flex-direction: column;
}
.message {
display: flex;
align-items: flex-start;
margin-bottom: 1rem;
width: 100%;
}
.message.user {
justify-content: flex-end;
}
.message-content {
max-width: 70%;
padding: 0.8rem;
border-radius: 12px;
font-size: clamp(14px, 2vw, 20px);
word-wrap: break-word;
}
.user .message-content {
background-color: #006acc;
color: white;
border-radius: 18px 18px 4px 18px;
}
.bot .message-content {
background-color: #333;
color: #f0f2f5;
border-radius: 18px 18px 18px 4px;
}
/* Input section */
.chat-input-container {
padding: 1rem;
border-top: 1px solid #444;
position: relative;
}
.chat-input-container textarea {
width: 100%;
padding: 0.8rem 60px 0.8rem 1rem;
border: 1px solid #444;
border-radius: 20px;
resize: none;
height: 50px;
font-size: clamp(14px, 1.5vw, 16px);
background-color: #333;
color: #f0f2f5;
}
/* Header section */
.chat-header {
padding: 1rem;
border-bottom: 1px solid #444;
display: flex;
justify-content: space-between;
align-items: center;
}
.bot-profile {
display: flex;
align-items: center;
gap: 10px;
}
.bot-avatar {
width: clamp(30px, 4vw, 40px);
height: clamp(30px, 4vw, 40px);
border-radius: 50%;
}
.bot-name {
font-weight: bold;
font-size: clamp(16px, 2vw, 1.1rem);
color: #f0f2f5;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
.chat-container {
margin: 10px;
width: calc(100% - 20px);
height: calc(100vh - 20px);
}
.message-content {
max-width: 85%;
}
.input-buttons {
right: 1rem;
bottom: 1.5rem;
}
}
@media screen and (max-width: 480px) {
.chat-container {
margin: 5px;
width: calc(100% - 10px);
border-radius: 8px;
}
.message-content {
max-width: 90%;
padding: 0.6rem;
}
.chat-header {
padding: 0.8rem;
}
.chat-input-container {
padding: 0.8rem;
}
.voice-controls {
gap: 5px;
}
.input-buttons {
gap: 5px;
}
}
/* Button styles */
.input-buttons {
position: absolute;
right: 1.5rem;
bottom: 1.7rem;
display: flex;
gap: 8px;
}
.voice-input-button,
.send-button {
background: none;
border: none;
cursor: pointer;
padding: 8px;
color: #006acc;
transition: color 0.3s;
}
.voice-input-button:hover,
.send-button:hover {
color: #004a77;
}
/* Animation styles */
.typing-indicator {
display: flex;
gap: 4px;
padding: 8px;
}
.typing-dot {
width: 8px;
height: 8px;
background-color: #90949c;
border-radius: 50%;
animation: typing 1.4s infinite ease-in-out;
}
@keyframes typing {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
} |