commit ee8647fb97cfb15ff5171adaa1c800efc996086c
parent 68b37be4a32d9d062ffc34649aec091695a383d1
Author: David Eisinger <[email protected]>
Date: Mon, 9 Jan 2023 23:56:18 -0500
Style fixes
Diffstat:
2 files changed, 25 insertions(+), 5 deletions(-)
diff --git a/themes/v2/assets/css/style.scss b/themes/v2/assets/css/style.scss
@@ -1,8 +1,29 @@
body {
font-family: monospace;
+ font-size: 13px;
padding: 50px;
}
-#content {
+h1, h2, h3 {
+ font-size: 1em;
+}
+
+h2, h3 {
+ color: #aaa;
+}
+
+a {
+ color: blue;
+}
+
+header, #content, footer {
max-width: 800px;
}
+
+footer {
+ text-align: center;
+
+ hr {
+ margin-bottom: 12px;
+ }
+}
diff --git a/themes/v2/layouts/partials/footer.html b/themes/v2/layouts/partials/footer.html
@@ -1,5 +1,4 @@
-<hr>
-
-<p>
+<footer>
+ <hr>
Copyright © {{ now.Format "2006" }} David Eisinger
-</p>
+</footer>