From 1fb36159c1eefbd4acd4fa60a42a988e4b9187ac Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sat, 19 Apr 2025 22:28:22 -0700 Subject: style: make xiatian float --- site/src/index.css | 13 +++++++++++++ site/src/pages/Homepage.tsx | 4 +++- 2 files changed, 16 insertions(+), 1 deletion(-) (limited to 'site') diff --git a/site/src/index.css b/site/src/index.css index bb66fd9..2084e7e 100644 --- a/site/src/index.css +++ b/site/src/index.css @@ -1,2 +1,15 @@ @import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap'); @import "tailwindcss"; + +@keyframes float { + 0%, 100% { + transform: translateY(0); + } + 50% { + transform: translateY(-10px); + } +} + +.floating { + animation: float 3s ease-in-out infinite; +} diff --git a/site/src/pages/Homepage.tsx b/site/src/pages/Homepage.tsx index d7919b4..6db2748 100644 --- a/site/src/pages/Homepage.tsx +++ b/site/src/pages/Homepage.tsx @@ -65,7 +65,9 @@ export default function Home() { ) : (

Welcome to 573-UPDATES

- +
+ +

News and Information for various arcade games is aggregated here!

Please see the{" "} -- cgit v1.2.3