From 0b6e0e4e957a21b4ff2d899fc180602e6ecc87d3 Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Tue, 27 Jun 2023 16:20:18 +0200 Subject: feat: commented test spinning animation --- style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/style.css b/style.css index 7283422..213e7b6 100644 --- a/style.css +++ b/style.css @@ -37,6 +37,10 @@ body{ background-color: rgba(220, 237, 200, 0.55); border: 3px solid skyblue; border-radius: 2%; + /*animation-name: spin; + animation-duration: 2s; + animation-iteration-count: infinite; + animation-timing-function: linear;*/ } a{ @@ -99,6 +103,14 @@ a{ animation-iteration-count: infinite; } +@keyframes spin{ + from{ + transform:rotate(0deg); + } + to{ + transform:rotate(359deg); + } +} @keyframes foot-anim{ 0%{ color: #84008c; -- cgit v1.2.3