time to push to . git apparently =w=

This commit is contained in:
2022-06-08 20:38:56 +02:00
parent 5fc1858e75
commit 8c919a1a8b
2 changed files with 28 additions and 1 deletions

View File

@@ -18,6 +18,15 @@
}
}
@keyframes not-cheating {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
:root {
--font: "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-h: "heonian", "Helvatica Neue", Helvetica, Arial, sans-serif;
@@ -125,4 +134,16 @@ header.fullscreen #search {
.header-animation-reverse {
animation: clearly-cheating 1s ease-in-out reverse;
}
main {
opacity: 0;
}
.main-animation {
animation: not-cheating 0.5s ease-in-out;
}
.main-animation-reverse {
animation: not-cheating 0.5s ease-in-out reverse;
}