Highlight links on hover.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Sat, 20 Feb 2016 23:47:53 +0200
changeset 1897 200fac373cf9
parent 1896 c2448e4e25f4
child 1898 2a18c31747dc
Highlight links on hover.
Makefile
rst.css
--- a/Makefile	Sat Feb 20 23:44:10 2016 +0200
+++ b/Makefile	Sat Feb 20 23:47:53 2016 +0200
@@ -102,6 +102,7 @@
 	{ \
 echo '<html><head><style>'; \
 echo 'a { text-decoration: none; color: hsl(240, 100%, 50%); }'; \
+echo 'a:hover { opacity: .5; }'; \
 echo '</style></head><body>'; \
 echo '<ul style="padding-left: 1em;">'; \
 for f in $(sort $(RST_FILES)); do \
--- a/rst.css	Sat Feb 20 23:44:10 2016 +0200
+++ b/rst.css	Sat Feb 20 23:47:53 2016 +0200
@@ -58,9 +58,7 @@
     text-decoration:none;
     color: hsl(240, 100%, 50%);
 }
-a:hover {
-    transparency: .5;
-}
+a:hover { opacity: .5; }
 h1 a {
     color: hsla(0, 0%, 0%, .8);
 }