diff options
| author | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-07-16 12:09:20 +0100 | 
|---|---|---|
| committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-07-16 12:09:20 +0100 | 
| commit | bc866494f7b77eebe7950f4dcf076616c181bd32 (patch) | |
| tree | 33ac2cf52627521ed3255988ced97edddf52efa0 /share | |
| parent | 81877e175b467d615bc83498423274e01e211ad9 (diff) | |
| download | blog-bc866494f7b77eebe7950f4dcf076616c181bd32.tar.gz blog-bc866494f7b77eebe7950f4dcf076616c181bd32.tar.bz2 blog-bc866494f7b77eebe7950f4dcf076616c181bd32.zip | |
Add table of context and addressable headers
Sometimes it's useful to highlight content of the post beforehand. Also, it's
just nice to have a clickable headers in the document to simplify sharing of
specific section.
Diffstat (limited to 'share')
| -rw-r--r-- | share/style.css | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/share/style.css b/share/style.css index 3d41f16..59001fd 100644 --- a/share/style.css +++ b/share/style.css @@ -115,3 +115,11 @@ ul.posts time {  ul.posts li a:visited {      color: #8b6fcb;  } + +.toclink { +    color: #222; +} + +.toclink:hover { +    text-decoration: none; +} |