diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-08-16 15:22:59 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-08-16 15:22:59 -0300 |
commit | 3af3da2ea0e54efeab003d62e698ab8fdaeb4fbb (patch) | |
tree | 6968579e482e406d01881b85469f958ba93b42a2 | |
parent | 9d120f85fc50dd16a3b47efde25e02f7e9cc6e79 (diff) |
css: content <hr> tweaks
Makes non-split <hr>'s consistent with <hr> (instead of using the browser-default styling).
-rw-r--r-- | src/static/site4.css | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/static/site4.css b/src/static/site4.css index 6fffba4a..a1a9ef44 100644 --- a/src/static/site4.css +++ b/src/static/site4.css @@ -723,18 +723,23 @@ ul > li.has-details { font-style: oblique; } -hr.split::before { +#content hr { + border: 1px inset #808080; + width: 100%; +} + +#content hr.split::before { content: "(split)"; color: #808080; } -hr.split { +#content hr.split { position: relative; overflow: hidden; border: none; } -hr.split::after { +#content hr.split::after { display: inline-block; content: ""; border: 1px inset #808080; |