WebApp production ver

This commit is contained in:
2025-04-14 10:26:56 +02:00
parent 8ac8b3ad5b
commit ec5191a7d3
865 changed files with 192011 additions and 2 deletions

61
Web/css/preloader.css Normal file
View File

@@ -0,0 +1,61 @@
/* Preloader styles */
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s;
}
.theme-light .preloader {
background-color: #ffffff;
}
.theme-dark .preloader {
background-color: #212529;
}
.spinner {
width: 50px;
height: 50px;
border: 5px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top-color: #0d6efd;
animation: spin 1s ease-in-out infinite;
}
.theme-dark .spinner {
border: 5px solid rgba(255, 255, 255, 0.1);
border-top-color: #0d6efd;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.fade-in {
opacity: 0;
animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
.content-wrapper {
opacity: 0;
transition: opacity 0.3s;
}
.content-wrapper.visible {
opacity: 1;
}