Skip to content

Commit

Permalink
Fix light theme link color
Browse files Browse the repository at this point in the history
  • Loading branch information
Still Hsu committed May 26, 2018
1 parent fdaa689 commit 73ebc02
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions docs/_template/light-dark-theme/styles/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 73ebc02

Please sign in to comment.