mirror of
https://github.com/ION606/bluesky-client.git
synced 2026-05-14 21:26:54 +00:00
27 lines
554 B
CSS
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%;
|
|
}
|
|
} |