Skip to content

Commit

Permalink
fix visited status bug stemming from css specificity
Browse files Browse the repository at this point in the history
  • Loading branch information
cblgh committed Dec 6, 2022
1 parent 6ab4900 commit 5b4cf8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions html/assets/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ textarea { background: black; color: wheat; }
ul li { list-style-type: circle; }
/* post author name is styled with `span > b` */
blockquote { border-left-color: darkred; }
pre code { color: darkred; }
a:not([class]), pre code { color: darkred; }
h1, h2, h2 > a:not([class], :visited), span > b { color: black; }
a:visited { color: #666; }
a:not([class]), header details a:visited { color: darkred; }
h1, h2, h2 > a:not([class]), span > b { color: black; }
header a, header a:visited { color: darkred; }

/* halloween theme */
/*
Expand Down

0 comments on commit 5b4cf8c

Please sign in to comment.