diff --git a/diplomacy/animation/simple-test.html b/diplomacy/animation/simple-test.html index c186a2d..edd574c 100644 --- a/diplomacy/animation/simple-test.html +++ b/diplomacy/animation/simple-test.html @@ -17,6 +17,7 @@ margin: 0; padding: 0; overflow: hidden; + font-family: sans-serif; } .container { width: 100vw; @@ -68,6 +69,23 @@ font-size: 12px; max-height: 80vh; overflow-y: auto; + pointer-events: none; /* Let clicks pass through */ + } + /* New leaderboard styles */ + #leaderboard { + position: absolute; + top: 60px; + left: 10px; + width: 250px; + background-color: rgba(0, 0, 0, 0.5); + color: white; + border-radius: 8px; + padding: 10px; + font-size: 14px; + line-height: 1.4em; + max-height: 80vh; + overflow-y: auto; + pointer-events: none; /* so we don't block clicks */ } @@ -84,6 +102,8 @@
+ +