initial commit

This commit is contained in:
2021-07-29 23:47:30 +03:00
commit 896146e0d9
20 changed files with 2318 additions and 0 deletions

9
src/css/animation.css Normal file
View File

@ -0,0 +1,9 @@
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1.0;
}
}