initial code commit

This commit is contained in:
2024-11-22 22:45:46 -05:00
parent 7d11b4ae14
commit 551566350e
37 changed files with 7331 additions and 129 deletions
+27
View File
@@ -0,0 +1,27 @@
/* container for the loading image */
#loading {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #333; /* keep background color */
z-index: 9999999999999999;
}
/* loading image styling */
#loading img {
max-width: 50%;
height: auto;
/* responsive resizing */
}
/* for small screens, adjust the loading image size */
@media (max-width: 600px) {
#loading img {
max-width: 60%;
}
}