Files
bluesky-client/CSS/loading.css
T
2024-11-22 22:45:46 -05:00

27 lines
554 B
CSS

/* 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%;
}
}