From b052f741d935abd2f51423abf3fcda9157844b5c Mon Sep 17 00:00:00 2001 From: "netop://ウィビ" Date: Sat, 11 Apr 2026 14:42:43 -0700 Subject: initial commit --- sass/uchu/core/_animation.scss | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 sass/uchu/core/_animation.scss (limited to 'sass/uchu/core/_animation.scss') diff --git a/sass/uchu/core/_animation.scss b/sass/uchu/core/_animation.scss new file mode 100644 index 0000000..5487ce4 --- /dev/null +++ b/sass/uchu/core/_animation.scss @@ -0,0 +1,23 @@ +@keyframes hovering { + 0% { + transform: translate(0, 0); + } + + 50% { + transform: translate(0, 8px); + } + + 100% { + transform: translate(0, 0); + } +} + +@keyframes marquee { + 0% { + transform: translateX(0); + } + + to { + transform: translateX(-100%); + } +} -- cgit v1.2.3