Update main.py
Browse files
main.py
CHANGED
@@ -328,6 +328,9 @@ def proxy(path):
|
|
328 |
--table-border: rgba(236, 240, 241, 0.8);
|
329 |
--table-even-row: rgba(245, 247, 250, 0.5);
|
330 |
--hr-color: rgba(44, 62, 80, 0.2);
|
|
|
|
|
|
|
331 |
}
|
332 |
|
333 |
/* Dark mode variables */
|
@@ -343,6 +346,9 @@ def proxy(path):
|
|
343 |
--table-border: rgba(51, 65, 85, 0.8);
|
344 |
--table-even-row: rgba(30, 41, 59, 0.5);
|
345 |
--hr-color: rgba(226, 232, 240, 0.2);
|
|
|
|
|
|
|
346 |
}
|
347 |
body {
|
348 |
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
@@ -370,12 +376,13 @@ def proxy(path):
|
|
370 |
}
|
371 |
.breadcrumb a {
|
372 |
text-decoration: none;
|
373 |
-
color:
|
374 |
padding: 8px 16px;
|
375 |
border-radius: 8px;
|
376 |
transition: var(--transition);
|
377 |
font-weight: 500;
|
378 |
background: rgba(52, 152, 219, 0.1);
|
|
|
379 |
}
|
380 |
.breadcrumb a:hover {
|
381 |
background: var(--primary-gradient);
|
@@ -413,7 +420,7 @@ def proxy(path):
|
|
413 |
display: block;
|
414 |
padding: 20px;
|
415 |
text-decoration: none;
|
416 |
-
color: var(--
|
417 |
font-weight: 500;
|
418 |
transition: var(--transition);
|
419 |
background: var(--card-bg);
|
|
|
328 |
--table-border: rgba(236, 240, 241, 0.8);
|
329 |
--table-even-row: rgba(245, 247, 250, 0.5);
|
330 |
--hr-color: rgba(44, 62, 80, 0.2);
|
331 |
+
--link-color: #2563eb;
|
332 |
+
--link-hover-color: #1d4ed8;
|
333 |
+
--link-visited-color: #4338ca;
|
334 |
}
|
335 |
|
336 |
/* Dark mode variables */
|
|
|
346 |
--table-border: rgba(51, 65, 85, 0.8);
|
347 |
--table-even-row: rgba(30, 41, 59, 0.5);
|
348 |
--hr-color: rgba(226, 232, 240, 0.2);
|
349 |
+
--link-color: #60a5fa;
|
350 |
+
--link-hover-color: #93c5fd;
|
351 |
+
--link-visited-color: #a5b4fc;
|
352 |
}
|
353 |
body {
|
354 |
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
|
|
376 |
}
|
377 |
.breadcrumb a {
|
378 |
text-decoration: none;
|
379 |
+
color: var(--link-color);
|
380 |
padding: 8px 16px;
|
381 |
border-radius: 8px;
|
382 |
transition: var(--transition);
|
383 |
font-weight: 500;
|
384 |
background: rgba(52, 152, 219, 0.1);
|
385 |
+
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
386 |
}
|
387 |
.breadcrumb a:hover {
|
388 |
background: var(--primary-gradient);
|
|
|
420 |
display: block;
|
421 |
padding: 20px;
|
422 |
text-decoration: none;
|
423 |
+
color: var(--link-color);
|
424 |
font-weight: 500;
|
425 |
transition: var(--transition);
|
426 |
background: var(--card-bg);
|