40 lines
782 B
CSS
40 lines
782 B
CSS
/* 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 */ |