Update main.py
Browse files
main.py
CHANGED
@@ -346,9 +346,9 @@ def proxy(path):
|
|
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: #
|
350 |
-
--link-hover-color: #
|
351 |
-
--link-visited-color: #
|
352 |
}
|
353 |
body {
|
354 |
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
@@ -384,6 +384,10 @@ def proxy(path):
|
|
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);
|
389 |
transform: translateY(-2px);
|
@@ -425,6 +429,10 @@ def proxy(path):
|
|
425 |
transition: var(--transition);
|
426 |
background: var(--card-bg);
|
427 |
}
|
|
|
|
|
|
|
|
|
428 |
li a:hover {
|
429 |
background: var(--primary-gradient);
|
430 |
color: white;
|
|
|
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: #93c5fd;
|
350 |
+
--link-hover-color: #bfdbfe;
|
351 |
+
--link-visited-color: #c4b5fd;
|
352 |
}
|
353 |
body {
|
354 |
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
|
|
384 |
background: rgba(52, 152, 219, 0.1);
|
385 |
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
386 |
}
|
387 |
+
|
388 |
+
[data-theme="dark"] a:hover {
|
389 |
+
text-decoration: underline;
|
390 |
+
}
|
391 |
.breadcrumb a:hover {
|
392 |
background: var(--primary-gradient);
|
393 |
transform: translateY(-2px);
|
|
|
429 |
transition: var(--transition);
|
430 |
background: var(--card-bg);
|
431 |
}
|
432 |
+
|
433 |
+
[data-theme="dark"] a {
|
434 |
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
|
435 |
+
}
|
436 |
li a:hover {
|
437 |
background: var(--primary-gradient);
|
438 |
color: white;
|