custom.css
... ...
@@ -319,7 +319,6 @@ h1.header-title {
319 319
75% 100%, 25% 100%, 0% 50%);
320 320
321 321
background: #1b1b1b;
322
- border: 1px solid #333;
323 322
transition: background .15s ease, transform .06s ease;
324 323
}
325 324
... ...
@@ -347,3 +346,11 @@ h1.header-title {
347 346
/* Responsive scaling (optional) */
348 347
@media (max-width: 640px) { .hexmap { --side: 48px; } }
349 348
@media (max-width: 420px) { .hexmap { --side: 40px; } }
349
+
350
+/* Show only one board at a time */
351
+.hexmap .board{ display:none !important; }
352
+.hexmap .board.is-default{ display:block !important; } /* when no hash */
353
+.hexmap .board:target{ display:block !important; } /* when a board is targeted */
354
+
355
+/* If any board is targeted, hide the default one */
356
+.hexmap:has(.board:target) .board.is-default{ display:none !important; }