Spaces:
Sleeping
Sleeping
Update src/styles/global.css
Browse files- src/styles/global.css +15 -0
src/styles/global.css
CHANGED
|
@@ -1046,6 +1046,21 @@ h1, h2, h3 {
|
|
| 1046 |
}
|
| 1047 |
}
|
| 1048 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1049 |
@keyframes promptPulse {
|
| 1050 |
0%, 100% {
|
| 1051 |
transform: scale(1);
|
|
|
|
| 1046 |
}
|
| 1047 |
}
|
| 1048 |
|
| 1049 |
+
@keyframes fadeInPulse {
|
| 1050 |
+
0% {
|
| 1051 |
+
opacity: 0;
|
| 1052 |
+
transform: translate(-50%, -50%) scale(0.8);
|
| 1053 |
+
}
|
| 1054 |
+
50% {
|
| 1055 |
+
opacity: 0.8;
|
| 1056 |
+
transform: translate(-50%, -50%) scale(1.02);
|
| 1057 |
+
}
|
| 1058 |
+
100% {
|
| 1059 |
+
opacity: 1;
|
| 1060 |
+
transform: translate(-50%, -50%) scale(1);
|
| 1061 |
+
}
|
| 1062 |
+
}
|
| 1063 |
+
|
| 1064 |
@keyframes promptPulse {
|
| 1065 |
0%, 100% {
|
| 1066 |
transform: scale(1);
|