Skip to content

Commit

Permalink
Update animations.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Whitzzscott authored Sep 3, 2024
1 parent 568928a commit 1140be0
Showing 1 changed file with 1 addition and 36 deletions.
37 changes: 1 addition & 36 deletions animations.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
}
}

/* General scrolling animation for the chatbox */
@keyframes scrollAnim {
from {
transform: translateY(0);
Expand All @@ -39,42 +38,8 @@
animation: scrollAnim 1.5s ease-in-out infinite;
}

/* Glowing animation for messages */
@keyframes glowing {
0% {
box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}
100% {
box-shadow: 0 0 30px rgba(0, 123, 255, 1);
}
}

.message {
animation: glowing 1.5s infinite alternate;
}

/* Fade-in animation for messages */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.message {
animation: fadeIn 0.5s ease;
}

/* Typing indicator animation */
@keyframes typingBlink {
0%, 100% {
opacity: 0;
}
50% {
opacity: 1;
}
animation: glowing 1.5s infinite alternate, fadeIn 0.5s ease;
}

.typing-indicator {
Expand Down

0 comments on commit 1140be0

Please sign in to comment.