hugo-soresu

My fork of hugo-xmin

git clone git://git.shimmy1996.com/hugo-soresu.git
commit 13d6bcbda581dc53b4850e6fac34bb6dbe3707d2
parent 19d0f79a455f96293f3ed3e0a282c5e7e6039dbf
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Wed, 24 Apr 2019 23:55:26 -0400

Add back hyperlink decoration

Diffstat:
Mlayouts/partials/css/style.css | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/layouts/partials/css/style.css b/layouts/partials/css/style.css
@@ -48,9 +48,12 @@ hr {
     font-style: italic;
 }
 a {
-    text-decoration:none;
+    text-decoration: none;
     color: var(--accent-color);
 }
+a:hover {
+    text-decoration: underline;
+}
 /* code */
 pre {
     border: 1px solid var(--stress-2-color);