Update style.css
Browse files
style.css
CHANGED
@@ -77,18 +77,27 @@ input[type="text"]:focus {
|
|
77 |
}
|
78 |
|
79 |
#status {
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
}
|
93 |
|
94 |
#upload {
|
|
|
77 |
}
|
78 |
|
79 |
#status {
|
80 |
+
|
81 |
+
display: block;
|
82 |
+
margin: 1.5rem auto;
|
83 |
+
padding: 0.75rem;
|
84 |
+
text-align: center;
|
85 |
+
border-radius: 0.5rem;
|
86 |
+
font-weight: 500;
|
87 |
+
background: linear-gradient(90deg, #4c1d95 0%, #6d28d9 100%);
|
88 |
+
color: white;
|
89 |
+
animation: pulse 2s infinite;
|
90 |
+
}
|
91 |
+
|
92 |
+
@keyframes pulse {
|
93 |
+
0% { opacity: 0.8; }
|
94 |
+
50% { opacity: 1; }
|
95 |
+
100% { opacity: 0.8; }
|
96 |
+
}
|
97 |
+
|
98 |
+
#status.ready {
|
99 |
+
background: linear-gradient(90deg, #065f46 0%, #059669 100%);
|
100 |
+
animation: none;
|
101 |
}
|
102 |
|
103 |
#upload {
|