diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-04-28 18:04:45 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-04-28 18:04:45 -0300 |
commit | f10f92353f7b87325de13af980224ae62f2960c5 (patch) | |
tree | 2b03ccc8f5d68c58c724adf21c83e024677414b7 /theme/neb/static/css/neb-anim.css | |
parent | c3284dc82fd40d9df00984093b8369bf26e15917 (diff) |
Diffstat (limited to 'theme/neb/static/css/neb-anim.css')
-rw-r--r-- | theme/neb/static/css/neb-anim.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/theme/neb/static/css/neb-anim.css b/theme/neb/static/css/neb-anim.css new file mode 100644 index 0000000..45de2fd --- /dev/null +++ b/theme/neb/static/css/neb-anim.css @@ -0,0 +1,31 @@ +@property --shine1 { + syntax: '<percentage>'; + initial-value: 0%; + inherits: false; +} + +@property --shine2 { + syntax: '<percentage>'; + initial-value: 0%; + inherits: false; +} + +@keyframes label-shine { + from { + --shine1: 0%; + --shine2: 0%; + } + + 20% { + --shine2: 0%; + } + + 80% { + --shine1: 100%; + } + + 100% { + --shine1: 100%; + --shine2: 100%; + } +} |