forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimations.css
More file actions
35 lines (33 loc) · 667 Bytes
/
Copy pathanimations.css
File metadata and controls
35 lines (33 loc) · 667 Bytes
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
.copilotKitActivityDot1 {
animation: copilotKitActivityDotsAnimation 1.05s infinite;
}
.copilotKitActivityDot2 {
animation-delay: 0.1s;
}
.copilotKitActivityDot3 {
animation-delay: 0.2s;
}
@keyframes copilotKitActivityDotsAnimation {
0%,
57.14% {
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
transform: translate(0);
}
28.57% {
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
transform: translateY(-6px);
}
100% {
transform: translate(0);
}
}
@keyframes copilotKitSpinAnimation {
to {
transform: rotate(360deg);
}
}
@keyframes copilotKitPulseAnimation {
50% {
opacity: 0.5;
}
}