Spaces:
Sleeping
Sleeping
File size: 1,061 Bytes
732e177 b57108e 732e177 |
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 |
/* Custom scrollbar */
#chat-messages::-webkit-scrollbar {
width: 6px;
}
#chat-messages::-webkit-scrollbar-track {
background: #f1f1f1;
}
#chat-messages::-webkit-scrollbar-thumb {
background: #888;
border-radius: 3px;
}
#chat-messages::-webkit-scrollbar-thumb:hover {
background: #666;
}
/* Message animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
#chat-messages > div {
animation: fadeIn 0.3s ease-out forwards;
}
/* Typing indicator */
.typing-indicator {
display: flex;
align-items: center;
justify-content: center;
}
.typing-indicator .dot {
animation: typingAnimation 1.4s infinite;
display: inline-block;
margin: 0 2px;
}
.typing-indicator .dot:nth-child(2) {
animation-delay: 0.2s;
}
.typing-indicator .dot:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes typingAnimation {
0% { transform: translateY(0px); }
28% { transform: translateY(-6px); }
44% { transform: translateY(0px); }
} |