diff options
author | EuAndreh <eu@euandre.org> | 2025-04-17 09:02:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-17 09:02:10 -0300 |
commit | cb95ddd45c70abece3c39672b82d08a0823eeafb (patch) | |
tree | cb4888a039c73fae08b6f29df1837f3df4c83905 /src/content/style.css | |
parent | Add task on duplicate IDs (diff) | |
download | euandre.org-cb95ddd45c70abece3c39672b82d08a0823eeafb.tar.gz euandre.org-cb95ddd45c70abece3c39672b82d08a0823eeafb.tar.xz |
src/content/style.css: Adjust footer selectors for adoc(1) current inflexible HTML
Diffstat (limited to '')
-rw-r--r-- | src/content/style.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/content/style.css b/src/content/style.css index e3b79b5..4aab842 100644 --- a/src/content/style.css +++ b/src/content/style.css @@ -71,21 +71,25 @@ ul.no-style li { /* Footer */ -footer { +body > footer { font-size: 14px; - margin-top: 30px; padding: 12px 0px 12px 0px; } -footer li { +body > footer li { list-style-type: none; margin-top: 10px; } -footer li a { +body > footer li a { margin-left: 5px; } +.content-footer, .page-footer, #footnotes { + border-top: 0.5px solid #555; +} + + /* Code blocks */ |