summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;