Skip to content
Snippets Groups Projects
Commit 00367608 authored by echicken's avatar echicken :chicken:
Browse files

Dark mode links should pop out a bit more.

parent 5445c5db
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ function header(title) {
writeln("tbody > tr { border-top: 1px solid silver; }");
writeln("tbody > tr:nth-child(even) { background-color: whitesmoke; }");
writeln("td { padding: .5rem; }");
writeln("@media (prefers-color-scheme: dark) { body { color: #FAFAFA; background-color: #0A0A0A; } a { color: silver; } a:visited { color: silver; } thead th { background-color: black; } tbody > tr:nth-child(even) { background-color: #2A2A2A; } tbody > tr { border-color: #1F1F1F; } }");
writeln("@media (prefers-color-scheme: dark) { body { color: #FAFAFA; background-color: #0A0A0A; } a { color: #FAFAFA; font-weight: bold; } a:visited { color: #FAFAFA; font-weight: bold; } thead th { background-color: black; } tbody > tr:nth-child(even) { background-color: #2A2A2A; } tbody > tr { border-color: #1F1F1F; } }");
writeln("</style>");
writeln("<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>");
writeln("<title>" + system.name + " " + title + "</title>");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment