summaryrefslogtreecommitdiff
path: root/themes/hugo-classic
diff options
context:
space:
mode:
Diffstat (limited to 'themes/hugo-classic')
-rw-r--r--themes/hugo-classic/layouts/partials/footer.html2
-rw-r--r--themes/hugo-classic/static/css/style.css30
2 files changed, 30 insertions, 2 deletions
diff --git a/themes/hugo-classic/layouts/partials/footer.html b/themes/hugo-classic/layouts/partials/footer.html
index 3229661..8b721a8 100644
--- a/themes/hugo-classic/layouts/partials/footer.html
+++ b/themes/hugo-classic/layouts/partials/footer.html
@@ -5,7 +5,7 @@
{{ . | markdownify }}
{{ end }}
<div id="license-info">
- &#169;2018 by Sebastian Götte. This work is licensed under
+ &#169;2020 by Jan Götte. This work is licensed under
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC-BY-NC-SA 4.0</a>.
</div>
<div id="imprint-info">
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;
+}