Update szamrendszer.css

This commit is contained in:
Barbara Zoé Juhász 2025-03-18 18:34:43 +00:00
parent a4fd965b8a
commit 8a41b67020

View File

@ -64,4 +64,39 @@ input[readonly] {
margin: 10px;
width: 100%;
max-width: 200px;
}
}
body {
opacity: 1;
transition: opacity 0.5s ease-in-out;
}
body.fade-out {
opacity: 0;
}
.animated-bg {
transition: opacity 0.5s ease-in-out;
}
body {
opacity: 0;
animation: fadeIn 0.5s forwards;
transition: opacity 0.5s ease-in-out;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
body.fade-out {
opacity: 0;
}
.animated-bg {
transition: opacity 0.5s ease-in-out;
}