diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-08-15 15:10:04 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-08-15 15:10:04 +0200 |
commit | 0007e50506ebaa61554bfd11e98581dada7e0cdd (patch) | |
tree | cf0064a7a165c602fb89ffa15993b3db69cef751 /style.css | |
parent | 8ab8988d01199f64151c532c59ff6c08735d4e37 (diff) |
animations!!
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -105,6 +105,10 @@ img { .battle__monster-sprite img.damaged { filter: brightness(2); } +.battle__monster-sprite__animation { + position: fixed; + z-index: 10; +} .battle__monster-technique { background-color: beige; @@ -145,6 +149,11 @@ img { transition: background-color; } +.moveset__item[disabled] { + color: #ebebeb; +} + + #enemy { position: relative; user-select: none; @@ -172,7 +181,7 @@ img { .damage { position: absolute; - color: red; + z-index: 11; animation: float-up-and-disappear; } |