22 lines
348 B
Plaintext
22 lines
348 B
Plaintext
#cmplz-cookiebanner-container {
|
|
.cmplz-cookiebanner {
|
|
bottom: -50vh; // @todo height of banner
|
|
-webkit-animation: slideIn 0.5s forwards;
|
|
-webkit-animation-delay: 1s;
|
|
animation: slideIn 0.5s forwards;
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
@-webkit-keyframes slideIn {
|
|
100% {
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
100% {
|
|
bottom: 0;
|
|
}
|
|
}
|
|
}
|