Compare commits
2 commits
f2ca738a57
...
999db22888
Author | SHA1 | Date | |
---|---|---|---|
999db22888 | |||
7d076e0742 |
2 changed files with 19 additions and 3 deletions
|
@ -1,4 +1,11 @@
|
||||||
(header
|
(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
|
(div
|
||||||
((class "banner")
|
((class "banner")
|
||||||
(hx-get "/hx/home")
|
(hx-get "/hx/home")
|
||||||
|
|
|
@ -83,10 +83,19 @@ a:visited {
|
||||||
text-decoration-color: var(--link-color);
|
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: ". -> . ";
|
content: ". -> .";
|
||||||
color: var(--foreground-color);
|
|
||||||
font-weight: 900;
|
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 {
|
body {
|
||||||
|
|
Loading…
Reference in a new issue