mirror of
https://github.com/ION606/bluesky-client.git
synced 2026-05-14 21:26:54 +00:00
initial code commit
This commit is contained in:
@@ -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%;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user