pdufour commited on
Commit
e673ce8
·
verified ·
1 Parent(s): 238df02

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +21 -12
style.css CHANGED
@@ -77,18 +77,27 @@ input[type="text"]:focus {
77
  }
78
 
79
  #status {
80
- display: flex;
81
- align-items: center;
82
- gap: 0.5rem;
83
- background: #fff;
84
- border: 1px solid #e2e8f0;
85
- color: #1a202c;
86
- font-size: 0.875rem;
87
- padding: 0.75rem 1rem;
88
- margin: 1.5rem auto;
89
- border-radius: 0.5rem;
90
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
91
- transition: all 0.2s;
 
 
 
 
 
 
 
 
 
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 {