fix styling on copyright

This commit is contained in:
Jacob Janzen 2024-08-08 20:59:26 -05:00
parent 3d4eff43e5
commit cff030d2a9
2 changed files with 13 additions and 1 deletions

View file

@ -62,6 +62,18 @@ a:hover {
width: 700px; width: 700px;
max-width: calc(100% - 20px); max-width: calc(100% - 20px);
text-align: center; text-align: center;
display: grid;
justify-content: space-between;
}
.footer-top {
z-index: 2;
display: flex;
justify-content: space-between;
}
.footer-bottom {
z-index: 1;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }

View file

@ -25,7 +25,7 @@
(setq webring (json-parse-string (plz 'get "https://aidang.cc/webring/https://jjanzen.ca"))) (setq webring (json-parse-string (plz 'get "https://aidang.cc/webring/https://jjanzen.ca")))
(defun create-webring-html (plist) (defun create-webring-html (plist)
(format "<div class='footer'><div><span><a href='%s'>« %s</a></span><span>CSSA Web Ring</span><span><a href='%s'>%s »</a></span></div><div>Copyright (C) Jacob Janzen 2024</div></div>" (format "<div class='footer'><div class='footer-top'><span><a href='%s'>« %s</a></span><span>CSSA Web Ring</span><span><a href='%s'>%s »</a></span></div><div class='footer-bottom'>Copyright (C) Jacob Janzen 2024</div></div>"
(gethash "url" (gethash "left" webring)) (gethash "url" (gethash "left" webring))
(gethash "name" (gethash "left" webring)) (gethash "name" (gethash "left" webring))
(gethash "url" (gethash "right" webring)) (gethash "url" (gethash "right" webring))