This commit is contained in:
2026-03-20 17:13:38 +01:00
parent 4c84735b75
commit c043ee9a52
1152 changed files with 317560 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
/* Popup box BEGIN */
.infofenster {
position: absolute;
top: 100px;
right: 100px;
width: auto;
height: auto;
min-height: 100px;
min-width: 400px;
padding-left: 50px;
padding-right: 50px;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 15px 15px 15px 15px;
text-align: center;
z-index: 1000;
background-color: #555;
color: #fff;
animation:signup-response 0.5s 1;
-webkit-animation:signup-response 0.5s 1;
animation-fill-mode: forwards;
animation-delay:5s;
-webkit-animation-delay:5s; /* Safari and Chrome */
-webkit-animation-fill-mode: forwards;
}
@keyframes signup-response{
from {opacity :1;}
to {opacity :0;}
}
@-webkit-keyframes signup-response{
from {opacity :1;}
to {opacity :0;}
}
/* Popup box BEGIN */