|
6 | 6 | } |
7 | 7 |
|
8 | 8 | .dashboard-header { |
9 | | - background: #000000; |
10 | | - border-bottom: 1px solid #e5e5e5; |
| 9 | + background: #1e293b; |
| 10 | + border-bottom: 1px solid #e2e8f0; |
11 | 11 | color: white; |
12 | | - padding: 1rem 2rem; |
13 | | - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
| 12 | + padding: 1.5rem 2rem; |
| 13 | + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
14 | 14 | } |
15 | 15 |
|
16 | 16 |
|
|
31 | 31 |
|
32 | 32 | .logo h1 { |
33 | 33 | margin: 0; |
34 | | - font-size: 1.5rem; |
| 34 | + font-size: 1.75rem; |
35 | 35 | font-weight: 700; |
36 | 36 | color: white; |
37 | 37 | letter-spacing: -0.025em; |
38 | 38 | } |
39 | 39 |
|
40 | 40 | .header-subtitle { |
41 | 41 | margin: 0; |
42 | | - opacity: 0.85; |
43 | | - font-size: 0.875rem; |
44 | | - font-weight: 500; |
45 | | - color: #cccccc; |
46 | | - display: none; |
| 42 | + opacity: 0.9; |
| 43 | + font-size: 1rem; |
| 44 | + font-weight: 400; |
| 45 | + color: #cbd5e1; |
| 46 | + display: block; |
47 | 47 | letter-spacing: 0.025em; |
48 | 48 | } |
49 | 49 |
|
|
80 | 80 | display: flex; |
81 | 81 | align-items: center; |
82 | 82 | gap: 0.625rem; |
83 | | - padding: 1rem 1.5rem; |
84 | | - border: 2px solid transparent; |
85 | | - background: transparent; |
| 83 | + padding: 0.875rem 1.5rem; |
| 84 | + border: 2px solid #e2e8f0; |
| 85 | + background: #ffffff; |
86 | 86 | border-radius: 0.75rem; |
87 | 87 | cursor: pointer; |
88 | 88 | font-weight: 600; |
89 | | - font-size: 0.95rem; |
90 | | - transition: all 0.3s ease; |
91 | | - color: #64748b; |
| 89 | + font-size: 1rem; |
| 90 | + transition: all 0.2s ease; |
| 91 | + color: #475569; |
92 | 92 | text-transform: capitalize; |
93 | 93 | letter-spacing: -0.025em; |
94 | 94 | position: relative; |
95 | 95 | overflow: hidden; |
96 | 96 | min-width: 160px; |
97 | 97 | justify-content: center; |
| 98 | + text-decoration: none; |
98 | 99 | } |
99 | 100 |
|
100 | 101 | .page-button::before { |
|
104 | 105 | left: -100%; |
105 | 106 | width: 100%; |
106 | 107 | height: 100%; |
107 | | - background: linear-gradient(90deg, |
108 | | - transparent, |
109 | | - rgba(16, 185, 129, 0.3), |
110 | | - transparent); |
111 | | - transition: left 0.5s ease; |
| 108 | + background: rgba(59, 130, 246, 0.1); |
| 109 | + transition: left 0.3s ease; |
112 | 110 | } |
113 | 111 |
|
114 | 112 | .page-button:hover { |
115 | | - background: transparent; |
116 | | - border-color: #10b981; |
117 | | - color: #059669; |
118 | | - transform: translateY(-2px); |
119 | | - box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2); |
| 113 | + background: rgba(59, 130, 246, 0.05); |
| 114 | + border-color: #3b82f6; |
| 115 | + color: #1d4ed8; |
| 116 | + transform: translateY(-1px); |
| 117 | + box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2); |
120 | 118 | } |
121 | 119 |
|
122 | 120 | .page-button:hover::before { |
123 | 121 | left: 100%; |
124 | 122 | } |
125 | 123 |
|
126 | 124 | .page-button.active { |
127 | | - background: transparent; |
128 | | - border-color: #10b981; |
129 | | - color: #059669; |
130 | | - box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); |
| 125 | + background: #3b82f6; |
| 126 | + border-color: #3b82f6; |
| 127 | + color: #ffffff; |
| 128 | + box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); |
131 | 129 | transform: translateY(-1px); |
132 | 130 | } |
133 | 131 |
|
134 | 132 | .page-button.active::before { |
135 | | - background: linear-gradient(90deg, |
136 | | - transparent, |
137 | | - rgba(16, 185, 129, 0.2), |
138 | | - transparent); |
| 133 | + background: rgba(255, 255, 255, 0.1); |
139 | 134 | } |
140 | 135 |
|
141 | 136 | .page-button.active:hover { |
142 | | - transform: translateY(-3px); |
143 | | - box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4); |
| 137 | + background: #2563eb; |
| 138 | + transform: translateY(-2px); |
| 139 | + box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4); |
144 | 140 | } |
145 | 141 |
|
146 | 142 | /* Metric Navigation */ |
|
161 | 157 | display: flex; |
162 | 158 | align-items: center; |
163 | 159 | gap: 0.625rem; |
164 | | - padding: 1rem 2rem; |
165 | | - border: 2px solid transparent; |
166 | | - background: transparent; |
| 160 | + padding: 0.875rem 1.5rem; |
| 161 | + border: 2px solid #e2e8f0; |
| 162 | + background: #ffffff; |
167 | 163 | border-radius: 0.75rem; |
168 | 164 | cursor: pointer; |
169 | 165 | font-weight: 600; |
170 | | - font-size: 0.95rem; |
171 | | - transition: all 0.3s ease; |
172 | | - color: #64748b; |
| 166 | + font-size: 1rem; |
| 167 | + transition: all 0.2s ease; |
| 168 | + color: #475569; |
173 | 169 | text-transform: capitalize; |
174 | 170 | letter-spacing: -0.025em; |
175 | 171 | position: relative; |
|
185 | 181 | left: -100%; |
186 | 182 | width: 100%; |
187 | 183 | height: 100%; |
188 | | - background: linear-gradient(90deg, |
189 | | - transparent, |
190 | | - rgba(255, 255, 255, 0.6), |
191 | | - transparent); |
192 | | - transition: left 0.5s ease; |
| 184 | + background: rgba(59, 130, 246, 0.1); |
| 185 | + transition: left 0.3s ease; |
193 | 186 | } |
194 | 187 |
|
195 | 188 | .nav-button:hover { |
196 | | - background: transparent; |
197 | | - border-color: #94a3b8; |
198 | | - color: #475569; |
199 | | - transform: translateY(-2px); |
200 | | - box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); |
| 189 | + background: rgba(59, 130, 246, 0.05); |
| 190 | + border-color: #3b82f6; |
| 191 | + color: #1d4ed8; |
| 192 | + transform: translateY(-1px); |
| 193 | + box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15); |
201 | 194 | } |
202 | 195 |
|
203 | 196 | .nav-button:hover::before { |
204 | 197 | left: 100%; |
205 | 198 | } |
206 | 199 |
|
207 | 200 | .nav-button.active { |
208 | | - background: transparent; |
209 | | - border-color: #000000; |
210 | | - color: #000000; |
211 | | - box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); |
| 201 | + background: #3b82f6; |
| 202 | + border-color: #3b82f6; |
| 203 | + color: #ffffff; |
| 204 | + box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); |
212 | 205 | transform: translateY(-1px); |
213 | 206 | } |
214 | 207 |
|
215 | 208 | .nav-button.active::before { |
216 | | - background: linear-gradient(90deg, |
217 | | - transparent, |
218 | | - rgba(255, 255, 255, 0.2), |
219 | | - transparent); |
| 209 | + background: rgba(255, 255, 255, 0.1); |
220 | 210 | } |
221 | 211 |
|
222 | 212 | .nav-button.active:hover { |
223 | | - transform: translateY(-3px); |
224 | | - box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); |
| 213 | + background: #2563eb; |
| 214 | + transform: translateY(-2px); |
| 215 | + box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4); |
225 | 216 | } |
226 | 217 |
|
227 | 218 | /* Main Content */ |
|
237 | 228 | /* Chart Container */ |
238 | 229 | .chart-container { |
239 | 230 | background: white; |
240 | | - border: 1px solid #e5e5e5; |
| 231 | + border: 1px solid #e2e8f0; |
241 | 232 | padding: 2rem; |
242 | | - border-radius: 0.5rem; |
243 | | - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
| 233 | + border-radius: 0.75rem; |
| 234 | + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
244 | 235 | } |
245 | 236 |
|
246 | 237 |
|
247 | 238 |
|
248 | 239 | .chart-container h2 { |
249 | 240 | margin: 0 0 1.5rem 0; |
250 | | - color: #111827; |
251 | | - font-size: 1.5rem; |
252 | | - font-weight: 600; |
| 241 | + color: #1e293b; |
| 242 | + font-size: 1.75rem; |
| 243 | + font-weight: 700; |
253 | 244 | letter-spacing: -0.025em; |
254 | 245 | } |
255 | 246 |
|
|
262 | 253 |
|
263 | 254 | .stat-card { |
264 | 255 | background: white; |
265 | | - border: 1px solid #e5e5e5; |
| 256 | + border: 1px solid #e2e8f0; |
266 | 257 | padding: 1.75rem; |
267 | | - border-radius: 0.5rem; |
268 | | - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
269 | | - border-left: 4px solid #000000; |
| 258 | + border-radius: 0.75rem; |
| 259 | + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 260 | + border-left: 4px solid #3b82f6; |
270 | 261 | transition: all 0.2s ease; |
271 | 262 | } |
272 | 263 |
|
|
279 | 270 |
|
280 | 271 | .stat-card h3 { |
281 | 272 | margin: 0 0 0.75rem 0; |
282 | | - color: #6b7280; |
| 273 | + color: #64748b; |
283 | 274 | font-size: 0.875rem; |
284 | 275 | font-weight: 600; |
285 | 276 | text-transform: uppercase; |
|
290 | 281 | margin: 0 0 0.75rem 0; |
291 | 282 | font-size: 2.25rem; |
292 | 283 | font-weight: 700; |
293 | | - color: #111827; |
| 284 | + color: #1e293b; |
294 | 285 | letter-spacing: -0.025em; |
295 | 286 | line-height: 1.1; |
296 | 287 | } |
|
366 | 357 |
|
367 | 358 | .library-title { |
368 | 359 | margin: 0 0 1rem 0; |
369 | | - font-size: 1.125rem; |
370 | | - font-weight: 600; |
371 | | - color: #111827; |
| 360 | + font-size: 1.25rem; |
| 361 | + font-weight: 700; |
| 362 | + color: #1e293b; |
372 | 363 | text-transform: capitalize; |
373 | 364 | text-align: center; |
374 | 365 | padding-bottom: 0.5rem; |
375 | | - border-bottom: 2px solid #e5e7eb; |
| 366 | + border-bottom: 2px solid #e2e8f0; |
376 | 367 | } |
377 | 368 |
|
378 | 369 | /* Responsive Design */ |
|
0 commit comments