Compare commits

...

2 commits

Author SHA1 Message Date
999db22888 add rel="me" links to site
All checks were successful
ci/woodpecker/push/build-and-deploy Pipeline was successful
2024-03-03 09:29:07 -05:00
7d076e0742 patch link styling
keep ::before colors consistent and add new ::before content for # fragment links
2024-03-02 11:36:01 -05:00
2 changed files with 19 additions and 3 deletions

View file

@ -1,4 +1,11 @@
(header
;; rel="me" verification links
(a ((href "https://git.bunk.computer/oxaliq")
(rel "me")))
(a ((href "https://mastodon.social/@oxaliq")
(rel "me")))
(a ((href "https://github.com/sorrelbri")
(rel "me")))
(div
((class "banner")
(hx-get "/hx/home")

View file

@ -83,10 +83,19 @@ a:visited {
text-decoration-color: var(--link-color);
}
a:not(.ascii a):not(a[hx-get*="hx"])::before {
a:not(.ascii a):not(a[hx-get*="hx"]):not(a[href*="#"])::before {
content: ". -> .";
color: var(--foreground-color);
font-weight: 900;
display: inline-block;
padding-right: .5em;
}
a[href*="#"] {
content: "↓";
font-weight: 900;
font-size: larger;
display: inline-block;
padding-right: .5em;
}
body {