From e13c0259dd94d22eebb6890953084e21103b5cca Mon Sep 17 00:00:00 2001 From: jaseg Date: Wed, 9 Sep 2020 22:49:38 +0200 Subject: Add sybil identity draft --- themes/hugo-classic/static/css/style.css | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'themes/hugo-classic/static') diff --git a/themes/hugo-classic/static/css/style.css b/themes/hugo-classic/static/css/style.css index cd867a0..47e5233 100644 --- a/themes/hugo-classic/static/css/style.css +++ b/themes/hugo-classic/static/css/style.css @@ -161,7 +161,7 @@ a::selection { blockquote { background: #f9f9f9; - border-left: 5px solid #ccc; + border-left: 5px solid #ffc6e3; padding: 3px 1em 3px; } @@ -174,6 +174,25 @@ table thead th { border-bottom: 1px solid #ddd; } th, td { padding: 5px; } tr:nth-child(even) { background: #eee } +table.footnote { + margin: 0; + border: 0; +} + +table.footnote:nth-of-type(1) { + position: relative; + margin-top: 6em; +} + +table.footnote:nth-of-type(1)::before { + content: "Footnotes:"; + position: absolute; + top: -2em; + border-top: 1px solid black; + border-bottom: 0; + width: 20em; +} + /* Inline code markup */ tt.literal { font-family: 'Ubuntu Mono', monospace; @@ -232,6 +251,12 @@ figure { margin-bottom: 3em; } +figure.header { + margin-left: 0; + margin-right: 0; + margin-top: 0; +} + #license-info img { vertical-align: middle; } @@ -243,3 +268,6 @@ figure { font-family: "Source Serif Pro", "Times New Roman", serif; } +div.document { + margin-bottom: 4em; +} -- cgit