diff options
| -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; |
