Started working on arrows

This commit is contained in:
2026-03-27 20:44:27 +01:00
parent 94efc03593
commit 535a4584aa
3 changed files with 148 additions and 11 deletions

View File

@@ -51,6 +51,26 @@ a {
margin-bottom: -3px;
}
/* ─── SVG overlay ────────────────────────────────────────── */
#arrows {
position: absolute;
inset: 0; /* fill the scene */
width: 100%;
height: 100%;
pointer-events: none; /* clicks pass through to divs */
overflow: visible; /* arrows can leave the box if needed */
}
/* Arrow path style */
.arrow-path {
fill: none;
stroke: #aaa9a2;
stroke-width: 1.5;
stroke-linecap: round;
stroke-linejoin: round;
}
/* Win32 classic scrollbar */
::-webkit-scrollbar {
width: 17px;