commit 16b3ed51dc51ec397be4497f43f557d977d41ef2
parent dd3c13669025ac8b06949e932f603e3035b666d0
Author: mpizzzle <m@michaelpercival.xyz>
Date: Tue, 30 Jun 2020 11:00:22 +0100
minor css changes
Diffstat:
| M | style.css | | | 35 | ++++++++++++++++------------------- |
1 file changed, 16 insertions(+), 19 deletions(-)
diff --git a/style.css b/style.css
@@ -20,8 +20,8 @@
}
body {
- color: var(--color2);
- background-color: var(--color0);
+ color: var(--color4);
+ background-color: var(--color256);
font-family: monospace;
margin-left: auto;
margin-right: auto;
@@ -52,22 +52,27 @@ a.line {
text-decoration: none;
}
-/*
+
a {
text-decoration: none;
}
-a:hover {
- text-decoration: underline;
-}*/
+a:link {
+ color: magenta;
+}
-#blob a {
- color: #777;
+a:visited {
+ color: darkmagenta;
}
-#blob a:hover {
- color: blue;
- text-decoration: none;
+a:hover {
+ color: green;
+ text-decoration: underline;
+}
+
+a:active {
+ color: green;
+ text-decoration: underline;
}
table thead td {
@@ -83,14 +88,6 @@ table td {
white-space: nowrap;
}
-/*#branches tr:hover td,
-#tags tr:hover td,
-#index tr:hover td,
-#log tr:hover td,
-#files tr:hover td {
- background-color: #eee;
-}*/
-
#index tr td:nth-child(2),
#tags tr td:nth-child(3),
#branches tr td:nth-child(3),