diff options
Diffstat (limited to 'web/static/style.css')
-rw-r--r-- | web/static/style.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/web/static/style.css b/web/static/style.css index 47ae365..57c670a 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -372,6 +372,16 @@ body { filter: drop-shadow(0 0 0.4rem #111); } +@keyframes throw-anim { + 0% { transform: scale(8); } + 100% { transform: scale(1); } +} + +#controls #keypad-dartboard #dartboard g.overlay circle:last-child { + transform-box: fill-box; + transform-origin: center; +} + #controls .key { color: #ccc; background-color: #282828; |