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;
|
@@ -386,6 +386,8 @@ def proxy(path):
|
|
386 |
}
|
387 |
|
388 |
[data-theme="dark"] a:hover {
|
|
|
|
|
389 |
text-decoration: underline;
|
390 |
}
|
391 |
.breadcrumb a:hover {
|
@@ -431,9 +433,15 @@ def proxy(path):
|
|
431 |
}
|
432 |
|
433 |
[data-theme="dark"] a {
|
434 |
-
text-shadow: 0
|
|
|
435 |
}
|
436 |
-
|
|
|
|
|
|
|
|
|
|
|
437 |
background: var(--primary-gradient);
|
438 |
color: white;
|
439 |
}
|
|
|
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;
|
|
|
386 |
}
|
387 |
|
388 |
[data-theme="dark"] a:hover {
|
389 |
+
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
|
390 |
+
color: #dbeafe;
|
391 |
text-decoration: underline;
|
392 |
}
|
393 |
.breadcrumb a:hover {
|
|
|
433 |
}
|
434 |
|
435 |
[data-theme="dark"] a {
|
436 |
+
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
|
437 |
+
color: #bfdbfe;
|
438 |
}
|
439 |
+
[data-theme="dark"] a:hover {
|
440 |
+
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
|
441 |
+
color: #dbeafe;
|
442 |
+
text-decoration: underline;
|
443 |
+
}
|
444 |
+
.breadcrumb a:hover {
|
445 |
background: var(--primary-gradient);
|
446 |
color: white;
|
447 |
}
|