From 1005e41420fa02f2c8e3f8779e6d043e6d6b9cb7 Mon Sep 17 00:00:00 2001 From: lolmao Date: Wed, 1 Nov 2023 10:22:14 -0500 Subject: Seperate chungus rotation from base.css --- css/chung.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 css/chung.css (limited to 'css/chung.css') diff --git a/css/chung.css b/css/chung.css new file mode 100644 index 0000000..17c8ec3 --- /dev/null +++ b/css/chung.css @@ -0,0 +1,14 @@ +#chung { + animation: rotation 1s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} + +@keyframes rotation { + from { + transform: rotate(0deg); + } + to { + transform: rotate(359deg); + } +} \ No newline at end of file -- cgit v1.2.3