summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2023-06-27 16:20:18 +0200
committerMartial Simon <msimon_fr@hotmail.com>2023-06-27 16:20:18 +0200
commit0b6e0e4e957a21b4ff2d899fc180602e6ecc87d3 (patch)
tree8d9ab360cf3a6e93390b57ee55a65e1a9dc6959a
parentc8a9f7565dfe20ab117087503b8cfc920427fcb7 (diff)
feat: commented test spinning animation
-rw-r--r--style.css12
1 files changed, 12 insertions, 0 deletions
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;