1
0
Fork 0

heartbeat

This commit is contained in:
Lethe Beltane 2024-12-08 10:26:21 -06:00
parent 815dfbd2ac
commit 8447fe5414
Signed by: lethe
GPG key ID: 21A3DA3DE29CB63C
8 changed files with 314 additions and 262 deletions

View file

@ -42,4 +42,18 @@ tr {
a {
text-decoration: none;
color: inherit;
}
}
.button {
padding: 2px 6px 2px 6px;
border-top: 1px solid #CCCCCC;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #CCCCCC;
}
/* https://enmascript.com/articles/2019/09/26/toggle-content-on-click-without-javascript/ */
#moids {
display: none;
}
#moids:target {
display: block;
}