added soundboard

This commit is contained in:
2026-02-14 14:42:33 +01:00
parent 075c4c990e
commit fc08da804f
6 changed files with 185 additions and 16 deletions
+20 -15
View File
@@ -39,18 +39,23 @@ pre code.hljs {
.hljs-symbol { color: #d16969; }
.hljs-literal { color: #d16969; }
pre code {
counter-reset: line;
}
pre code span {
counter-increment: line;
}
/* Optional: Zeilennummern (braucht CSS) */
pre code::before {
content: counter(line) " ";
display: inline-block;
width: 3em;
text-align: right;
color: #6a9955;
user-select: none;
}
/* Zeilennummern verbessern */
pre {
counter-reset: line;
position: relative;
}
pre code {
padding-left: 4.5em !important;
}
pre code::before {
content: counter(line) " ";
counter-increment: line;
position: absolute;
left: 0.8em;
color: #858585;
text-align: right;
width: 3em;
user-select: none;
}