Update style.css
Browse files
style.css
CHANGED
@@ -88,18 +88,21 @@
|
|
88 |
background-color: #7c3aed;
|
89 |
transform: scale(1.02);
|
90 |
}
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
95 |
}
|
96 |
|
97 |
@keyframes pulse {
|
98 |
-
0
|
99 |
-
50% { opacity:
|
|
|
100 |
}
|
101 |
|
102 |
-
.hidden { display: none; }
|
103 |
|
104 |
pre {
|
105 |
background: #f5f3ff;
|
|
|
88 |
background-color: #7c3aed;
|
89 |
transform: scale(1.02);
|
90 |
}
|
91 |
+
|
92 |
+
.loading {
|
93 |
+
font-size: 16px;
|
94 |
+
font-weight: bold;
|
95 |
+
color: #6b21a8; /* purple */
|
96 |
+
animation: pulse 1s infinite;
|
97 |
+
margin: 10px 0;
|
98 |
}
|
99 |
|
100 |
@keyframes pulse {
|
101 |
+
0% { opacity: 0.3; }
|
102 |
+
50% { opacity: 1; }
|
103 |
+
100% { opacity: 0.3; }
|
104 |
}
|
105 |
|
|
|
106 |
|
107 |
pre {
|
108 |
background: #f5f3ff;
|