/* CSS here */
This changes the color of the star next to the owner's name
888 is short for 888888 in hex, and is visible in both day and night modes
pure-menu, upvote, upvoted, svg { fill: #888 !important; */ }
pure-menu.dark, upvote.dark, upvoted.dark, svg.dark { fill: #888 !important; */ }
picking colors for unvisited, visited, and mouse hovering over a link
body a:link { color: #8888ff !important; }
body a:visited { color: #990099 !important; text-decoration: none; }
body a:hover { color: #2222ff !important; text-decoration: underline; }
workaround for unvisited links and a.domain not being covered by body a:visited {color: #xxx}
body .post .title:hover, body.dark a.domain:hover { color: #2222ff !important; text-decoration: underline; }
picking colors for dark mode unvisited links, visited, and mouse hovering over links
body.dark a:link { color: #8888ff !important; }
body.dark a:visited { color: #990099 !important; text-decoration: none; }
body.dark a:hover { color: #2222ff !important; text-decoration: underline; }
Workaround for a.comments link when unvisited not being covered by body.dark a:link {color: #xxx;}
body.dark .post .title:link, a.comments { color: #88f !important; }
Workaround for unvisited links not being changed by body.dark a:hover {color: #xxx;}
body.dark .post .title:hover { color: #22f !important; }
(post is archived)