summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw96k <w96k@debian>2022-11-13 01:22:37 +0400
committerw96k <w96k@debian>2022-11-13 01:22:37 +0400
commitadfd46aa98d0fc0c1dd72191f1f0c773d103ccec (patch)
treebf7857254319482b102a6ae48fabb49eabc6a179
parent83930f1d201263a1859dc3ed55ddea299167e2cf (diff)
Fix Menu and Footer
-rw-r--r--public/css/custom.css31
1 files changed, 30 insertions, 1 deletions
diff --git a/public/css/custom.css b/public/css/custom.css
index 179a6b6..0e547b6 100644
--- a/public/css/custom.css
+++ b/public/css/custom.css
@@ -52,7 +52,6 @@ article h2 {
border: 0;
position: relative;
z-index: 999;
- overflow-x: scroll;
/* top: calc(var(--universal-padding) - 2px); */
}
@@ -82,6 +81,10 @@ article h2 {
filter: drop-shadow(0 12px 4px rgba(0,0,0,.25));
}
+#preamble, #postamble {
+ overflow-x: scroll;
+}
+
#preamble {
max-width: calc(60ch + 6em);
margin: var(--universal-margin);
@@ -100,6 +103,32 @@ article h2 {
margin-top: 0;
}
+#postamble ul {
+ display: flex;
+ list-style: square;
+ margin: 0;
+ padding-left: 0;
+}
+
+@media only screen and (max-width: 500px) {
+ #postamble ul {
+ flex-direction: column;
+ }
+
+ #postamble ul li:first-child {
+ list-style: square;
+ }
+}
+
+#postamble ul li {
+ margin: 0 0.75em;
+ margin: 0 1ch;
+}
+
+#postamble ul li:first-child {
+ list-style: none;
+}
+
#meta p {
text-align: right;
}