-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyframes.css
More file actions
147 lines (144 loc) · 2.53 KB
/
Copy pathkeyframes.css
File metadata and controls
147 lines (144 loc) · 2.53 KB
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
/**
* @nebutra/theme — keyframes.css (via themes.generated.css)
* AUTO-GENERATED — multi-mood oklch catalog removed.
* Product chrome SSOT: @nebutra/tokens. Design languages: @nebutra/theme/skins.css.
* This file: shared keyframes only.
*/
/* ─── Shared Keyframe Animations ─── */
/*
* These keyframes are shared across all apps that import this file.
* App-specific keyframes (marquee, shimmer-slide, accordion, etc.) stay in each app's globals.css.
*/
@theme inline {
/* Loader / status animations */
@keyframes typing {
0%,
100% {
transform: translateY(0);
opacity: 0.5;
}
50% {
transform: translateY(-2px);
opacity: 1;
}
}
@keyframes loading-dots {
0%,
100% {
opacity: 0;
}
50% {
opacity: 1;
}
}
@keyframes wave {
0%,
100% {
transform: scaleY(1);
}
50% {
transform: scaleY(0.6);
}
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
@keyframes text-blink {
0%,
100% {
color: var(--color-primary);
}
50% {
color: var(--color-muted-foreground);
}
}
@keyframes bounce-dots {
0%,
100% {
transform: scale(0.8);
opacity: 0.5;
}
50% {
transform: scale(1.2);
opacity: 1;
}
}
@keyframes thin-pulse {
0%,
100% {
transform: scale(0.95);
opacity: 0.8;
}
50% {
transform: scale(1.05);
opacity: 0.4;
}
}
@keyframes pulse-dot {
0%,
100% {
transform: scale(1);
opacity: 0.8;
}
50% {
transform: scale(1.5);
opacity: 1;
}
}
@keyframes wave-bars {
0%,
100% {
transform: scaleY(1);
opacity: 0.5;
}
50% {
transform: scaleY(0.6);
opacity: 1;
}
}
@keyframes shimmer {
0% {
background-position: 200% 50%;
}
100% {
background-position: -200% 50%;
}
}
@keyframes spinner-fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* SnippetStatus copy animations */
@keyframes snippet-fade-in {
from {
opacity: 0;
transform: scale(0.5);
}
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes snippet-fade-out {
from {
opacity: 1;
transform: scale(1);
}
to {
opacity: 0;
transform: scale(0.5);
}
}
--animate-snippet-fade-in: snippet-fade-in 0.2s ease-out forwards;
--animate-snippet-fade-out: snippet-fade-out 0.2s ease-out forwards;
}