CoolFace
Apppublic

Lokrosh/chatty-mcbotface

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
main.css31 linesDownload Raw Back to styles
1```css2.chat-bubble {3    border-radius: 1.25rem;4    max-width: 80%;5}6.user-bubble {7    border-bottom-right-radius: 0;8}9.bot-bubble {10    border-bottom-left-radius: 0;11}12.typing-indicator span {13    display: inline-block;14    width: 8px;15    height: 8px;16    border-radius: 50%;17    background-color: #718096;18    margin-right: 4px;19    animation: bounce 1.4s infinite ease-in-out;20}21.typing-indicator span:nth-child(2) {22    animation-delay: 0.2s;23}24.typing-indicator span:nth-child(3) {25    animation-delay: 0.4s;26}27@keyframes bounce {28    0%, 60%, 100% { transform: translateY(0); }29    30% { transform: translateY(-8px); }30}31```