mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-04-20 08:16:38 +02:00
16 lines
231 B
CSS
16 lines
231 B
CSS
@keyframes modalFade {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.modal.show {
|
|
display: block;
|
|
animation-name: modalFade;
|
|
animation-duration: 0.3s;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
}
|