diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2023-06-27 16:20:18 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2023-06-27 16:20:18 +0200 |
| commit | 0b6e0e4e957a21b4ff2d899fc180602e6ecc87d3 (patch) | |
| tree | 8d9ab360cf3a6e93390b57ee55a65e1a9dc6959a /style.css | |
| parent | c8a9f7565dfe20ab117087503b8cfc920427fcb7 (diff) | |
feat: commented test spinning animation
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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; |
