This commit is contained in:
2025-02-06 17:14:33 +05:30
parent e319f46ac2
commit e0d8815b10
17 changed files with 72 additions and 19 deletions

View File

@@ -0,0 +1,33 @@
html, body {
height: 100%;
overflow: hidden;
}
.preloader {
position: fixed;
width: 100%;
height: 100%;
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
z-index: 99;
}
.loader {
width: 30px;
height: 30px;
border: 5px solid #677583;
border-top: 5px solid #171c24;
border-radius: 50%;
animation: spin 2s linear infinite;
}
.preloader.hidden {
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}