add fade-in animation

This commit is contained in:
Denis Lehmann 2022-04-14 00:29:30 +02:00
parent 7e4a7ad38f
commit 91c9c21fdd
3 changed files with 29 additions and 19 deletions

View file

@ -1,3 +1,8 @@
@keyframes fade-in {
0% { opacity: 0; }
100% { opacity: 1; }
}
body {
font-family: sans-serif;
margin: 0;
@ -27,9 +32,14 @@ body {
font-weight: bold;
}
#menu {
animation: fade-in ease-in-out .5s;
}
#content {
margin: 50px 0px;
text-align: center;
animation: fade-in ease-in-out .5s;
}
.file {