add footer and style home

This commit is contained in:
isUnknown 2024-01-26 11:03:42 +01:00
parent 1d135a1b7d
commit 61c1067f22
14 changed files with 364 additions and 447 deletions

27
assets/css/src/tabs.css Normal file
View file

@ -0,0 +1,27 @@
button.toggle.open {
font-weight: bold;
}
button.toggle.left::after {
margin-left: var(--unit--horizontal);
}
button.toggle.left.close::after {
content: "+";
}
button.toggle.left.open::after {
content: "-";
}
button.toggle.right::before {
margin-right: var(--unit--horizontal);
}
button.toggle.right.close::before {
content: "+";
}
button.toggle.right.open::before {
content: "-";
}
.content {
margin-top: calc(var(--unit--vertical) * 2);
}