38 lines
754 B
CSS
Vendored
38 lines
754 B
CSS
Vendored
/* (A) FULL SCREEN WRAPPER */
|
|
#spinner {
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100vw; height: 100vh;
|
|
z-index: 9999;
|
|
background: rgba(16, 16, 16, 0.5);
|
|
transition: opacity 0.2s;
|
|
display: none;
|
|
}
|
|
|
|
/* (B) CENTER LOADING SPINNER */
|
|
#spinner img {
|
|
position: absolute;
|
|
top: 50%; left: 50%;
|
|
transform: translate(-50%);
|
|
}
|
|
|
|
|
|
/* (X) DOES NOT QUITE MATTER */
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#loading {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: rgba(16, 16, 16, 0.5);
|
|
/*background-image: url(https://i.stack.imgur.com/FhHRx.gif);*/
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|