diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-08-11 17:21:31 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-08-11 17:25:04 -0400 |
| commit | 2afb23928e1984d475cc460e1672e8f6fa0e4dbe (patch) | |
| tree | ebd2cc514294d30b6fa4b36c2ee638326f06ef72 /docs/style.css | |
| parent | eac61ca02074c218667754d5f4ef562e780bae85 (diff) | |
Allow clicking on header to get fragment link
Diffstat (limited to 'docs/style.css')
| -rw-r--r-- | docs/style.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/style.css b/docs/style.css index 3264e776..4c8eb51b 100644 --- a/docs/style.css +++ b/docs/style.css @@ -21,6 +21,19 @@ h1, h2, h3, h4 { padding-bottom: 0.1em; border-bottom: 0.01em solid #9995 } +a:link.header, a:visited.header { + text-decoration:none; color:inherit; +} +.header { position:relative; } +.header:before { + position: absolute; + left: -0.9em; + content: "ยง"; + opacity: 0; +} +.header:hover:before { + opacity: 0.3; +} table { border-spacing: 0; |
