summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/style.css b/style.css
index 213e7b6..2a6800f 100644
--- a/style.css
+++ b/style.css
@@ -37,6 +37,8 @@ body{
background-color: rgba(220, 237, 200, 0.55);
border: 3px solid skyblue;
border-radius: 2%;
+ transition-property: opacity;
+ transition-duration: 0.3s;
/*animation-name: spin;
animation-duration: 2s;
animation-iteration-count: infinite;
@@ -51,6 +53,7 @@ a{
.link:hover {
opacity: 0.6;
}
+
.link span{
font-family:tintin;
font-size:1.5em;
@@ -99,8 +102,18 @@ a{
.footer{
animation-name: foot-anim;
- animation-duration: 5s;
+ animation-duration: 6s;
animation-iteration-count: infinite;
+ animation-timing-function: linear;
+}
+
+@keyframes unopacitize{
+ from{
+ opacity: 1;
+ }
+ to{
+ opacity: 0.6;
+ }
}
@keyframes spin{