diff options
author | Akshay <[email protected]> | 2021-02-05 13:01:03 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2021-02-05 13:01:03 +0000 |
commit | b1e2b04a5080f3e20e11b64f87756bafec9536bb (patch) | |
tree | 4bee2fd806badf54ec8a2e5b55f0159bf39ccf60 | |
parent | a6c13ad171674fd416fead685e3f2297e91396bc (diff) |
style visited posts
-rw-r--r-- | docs/style.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/style.css b/docs/style.css index 568665b..42b2f15 100644 --- a/docs/style.css +++ b/docs/style.css | |||
@@ -30,6 +30,7 @@ div.hot-links { | |||
30 | --light-black: #666666; | 30 | --light-black: #666666; |
31 | --white: #ffffff; | 31 | --white: #ffffff; |
32 | --dark-white: #eeeeee; | 32 | --dark-white: #eeeeee; |
33 | --inactive: #888; | ||
33 | 34 | ||
34 | --light-yellow: #F7B955; | 35 | --light-yellow: #F7B955; |
35 | --dark-yellow: #F49B0B; | 36 | --dark-yellow: #F49B0B; |
@@ -43,6 +44,7 @@ div.hot-links { | |||
43 | --light-black: #ccc; | 44 | --light-black: #ccc; |
44 | --white: #000; | 45 | --white: #000; |
45 | --dark-white: #323232; | 46 | --dark-white: #323232; |
47 | --inactive: #555 | ||
46 | } | 48 | } |
47 | ::-moz-selection, ::selection { | 49 | ::-moz-selection, ::selection { |
48 | color: var(--white); | 50 | color: var(--white); |
@@ -242,13 +244,17 @@ a, a:hover, a:visited, a:active { | |||
242 | color: var(--light-black); | 244 | color: var(--light-black); |
243 | } | 245 | } |
244 | 246 | ||
245 | .post-link, .post-link:hover, .post-link:visited, .post-link:active { | 247 | a.post-link, a.post-link:hover, a.post-link:active { |
246 | color: var(--black); | 248 | color: var(--black); |
247 | font-weight: 600; | 249 | font-weight: 600; |
248 | font-size: 1.1rem; | 250 | font-size: 1.1rem; |
249 | text-decoration: none; | 251 | text-decoration: none; |
250 | } | 252 | } |
251 | 253 | ||
254 | a.post-link:visited { | ||
255 | color: var(--inactive); | ||
256 | } | ||
257 | |||
252 | .post-end-link, .post-end-link:hover, .post-end-link:visited, .post-end-link:active | 258 | .post-end-link, .post-end-link:hover, .post-end-link:visited, .post-end-link:active |
253 | { | 259 | { |
254 | text-decoration: none; | 260 | text-decoration: none; |