connection/reconnection logic

This commit is contained in:
Alec
2021-11-29 19:58:24 -05:00
parent 0560dcffa9
commit dfe6edeb96
8 changed files with 111 additions and 70 deletions

View File

@@ -126,9 +126,6 @@ input {
min-width: 15em;
font-size: 20px;
margin: 0 auto;
animation: fade-in-slide-down-then-exit 6s ease;
animation-fill-mode: forwards;
animation-direction: normal;
}
#navbar {
@@ -261,6 +258,25 @@ input {
}
}
@keyframes fade-in-slide-down {
0% {
opacity: 0;
transform: translateY(-20px);
}
5% {
opacity: 1;
transform: translateY(0px);
}
95% {
opacity: 1;
transform: translateY(0px);
}
100% {
opacity: 1;
transform: translateY(0px);
}
}
@media(max-width: 550px) {
h1 {
font-size: 35px;