summaryrefslogtreecommitdiff
path: root/sass/uchu/core/_animation.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/uchu/core/_animation.scss')
-rw-r--r--sass/uchu/core/_animation.scss23
1 files changed, 23 insertions, 0 deletions
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%);
+ }
+}