From 73ebc0258031ff74770b1f4b4a8c4be9071f703c Mon Sep 17 00:00:00 2001 From: Still Hsu <341464@gmail.com> Date: Sat, 26 May 2018 15:32:23 +0800 Subject: [PATCH] Fix light theme link color --- .../_template/light-dark-theme/styles/light.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/_template/light-dark-theme/styles/light.css b/docs/_template/light-dark-theme/styles/light.css index 18660dfe6..a602274a2 100644 --- a/docs/_template/light-dark-theme/styles/light.css +++ b/docs/_template/light-dark-theme/styles/light.css @@ -10,11 +10,24 @@ body { overflow: visible; } +/* links */ + +a:active, a:hover, a:visited { + color: #0078d7; +} + +a { + color: #0050c5; + cursor: pointer; + text-decoration: none; + word-wrap: break-word; +} + /* code */ code { - color: #222f3d; - background-color: #f9f9f9; + color: #3b5269; + background-color: #ececec; border-radius: 4px; padding: 3px 7px; }