69 lines
1.1 KiB
CSS
69 lines
1.1 KiB
CSS
@import url('../main.css');
|
|
|
|
#loadscreen-wrapper {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
box-sizing: border-box;
|
|
padding: 1.75rem;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
justify-content: end;
|
|
gap: 1rem;
|
|
|
|
overflow: hidden;
|
|
}
|
|
|
|
#loadscreen-wrapper > header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
gap: 1rem;
|
|
}
|
|
|
|
#loadscreen-wrapper > footer {
|
|
width: 30rem;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
justify-content: space-between;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
#secondary-bar-wrapper {
|
|
width: 15rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
justify-content: space-between;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
#loading-action {
|
|
font-size: 1rem;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#secondary-bar {
|
|
block-size: 0.75rem;
|
|
inline-size: 100%;
|
|
}
|
|
|
|
#primary-bar {
|
|
block-size: 1rem;
|
|
inline-size: 100%;
|
|
}
|
|
|
|
#finishing-wrapper {
|
|
position: fixed;
|
|
bottom: 1.75rem;
|
|
left: 3.5rem;
|
|
}
|