summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndrew Yu <andrew@andrewyu.org>2021-12-16 01:34:54 +0800
committerAndrew Yu <andrew@andrewyu.org>2021-12-16 01:34:54 +0800
commit5fe874d5bfd769cc78e19d6cd3848bdde3235694 (patch)
tree1f82201f5de098d6e2e124a969a054f74ddeee82
parenteec0510181ab0fd390768cc4f0c29a1c440ca9dd (diff)
downloadwww-5fe874d5bfd769cc78e19d6cd3848bdde3235694.tar.gz
css link colors
-rw-r--r--style.css12
1 files changed, 12 insertions, 0 deletions
diff --git a/style.css b/style.css
index c2ab6c9..7d0bac5 100644
--- a/style.css
+++ b/style.css
@@ -36,3 +36,15 @@ h1 {
 	line-height: 1.2;
 	font-size: 80%;
 }
+a:link {
+  color: cyan;
+}
+a:visited {
+  color: violet;
+}
+a:hover {
+  color: yellow;
+}
+a:active {
+  color: lime;
+}