Update style.css
Browse files
style.css
CHANGED
@@ -88,6 +88,19 @@
|
|
88 |
background-color: #7c3aed;
|
89 |
transform: scale(1.02);
|
90 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
pre {
|
92 |
background: #f5f3ff;
|
93 |
border: 1px solid #e9d5ff;
|
|
|
88 |
background-color: #7c3aed;
|
89 |
transform: scale(1.02);
|
90 |
}
|
91 |
+
#loading {
|
92 |
+
color: #6b21a8;
|
93 |
+
font-style: italic;
|
94 |
+
animation: pulse 1.5s infinite;
|
95 |
+
}
|
96 |
+
|
97 |
+
@keyframes pulse {
|
98 |
+
0%, 100% { opacity: 1; }
|
99 |
+
50% { opacity: 0.4; }
|
100 |
+
}
|
101 |
+
|
102 |
+
.hidden { display: none; }
|
103 |
+
|
104 |
pre {
|
105 |
background: #f5f3ff;
|
106 |
border: 1px solid #e9d5ff;
|