fade & whitespace

This commit is contained in:
2021-07-24 13:24:31 +02:00
parent 8f7b1b47ac
commit 23fa7f9862

View File

@@ -217,7 +217,6 @@ body{
bottom: 0; bottom: 0;
left: 0; left: 0;
height: 30px; height: 30px;
} }
.footerLink{ .footerLink{
@@ -241,7 +240,6 @@ body{
.footerLink{ .footerLink{
font-size: 4vw; font-size: 4vw;
} }
.mid{ .mid{
margin-left: 2.5%; margin-left: 2.5%;
margin-right: 2.5%; margin-right: 2.5%;
@@ -258,3 +256,11 @@ body{
font-style: italic; font-style: italic;
font-weight: bold; font-weight: bold;
} }
@keyframes fadeIn {
from { opacity: 0.3; }
}
.animate-flicker {
animation: fadeIn 2s alternate;
}