Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/funkydan2/hugo-kiera.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Wellner Bou <paul@wellnerbou.de>2021-11-13 11:41:40 +0300
committerPaul Wellner Bou <paul@wellnerbou.de>2021-11-13 12:07:48 +0300
commit387d7d7bb75de9d4a25ee127423e65ed2629edc4 (patch)
tree93fd1173a1a32233171b725b5b20af5ec0a0209c
parent527d70dbebb75156b78554c15bb4f58384f6d63e (diff)
Align right post nav link to the right
-rw-r--r--static/css/styles-dark.css4
-rw-r--r--static/css/styles-light.css4
2 files changed, 8 insertions, 0 deletions
diff --git a/static/css/styles-dark.css b/static/css/styles-dark.css
index 5292b7b..35555ac 100644
--- a/static/css/styles-dark.css
+++ b/static/css/styles-dark.css
@@ -151,6 +151,10 @@ time {
font-size: 0.9em;
}
+#container main section.post-nav ul li:last-child {
+ text-align: right;
+}
+
#container main article > pre {
background-color: #a0a04b;
overflow-x: auto;
diff --git a/static/css/styles-light.css b/static/css/styles-light.css
index ea98a9d..a49e2d9 100644
--- a/static/css/styles-light.css
+++ b/static/css/styles-light.css
@@ -150,6 +150,10 @@ time {
font-size: 0.9em;
}
+#container main section.post-nav ul li:last-child {
+ text-align: right;
+}
+
#container main article > pre {
background-color: #ffffcc;
overflow-x: auto;