blinking join form

This commit is contained in:
Vinzenz Schroeter 2024-04-14 11:42:36 +02:00
parent f7e20fc608
commit be8ff72ea4

View file

@ -1,5 +1,22 @@
@keyframes BlinkJoinForm {
from {
font-weight: normal;
border-color: rgb(76, 76, 76);
}
50% {
border-color: black;
}
to {
font-weight: bold;
border-color: green;
}
}
.JoinForm {
border: 4px solid rgb(76, 76, 76);
border: 8px solid rgb(76, 76, 76);
position: absolute;
top: 50%;
@ -10,4 +27,10 @@
gap: 16px;
padding: 16px;
animation-duration: 1s;
animation-name: BlinkJoinForm;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}