mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
f590222568
- Speed up metadata loading by not waiting for the audio - Make loading animation bigger on mobile - Fix osu charts imported with gdrive - Fix gpicker not appearing after cancelling
41 lines
660 B
CSS
41 lines
660 B
CSS
#load-song{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#loading-song{
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 20vmax;
|
|
height: 15vmax;
|
|
background: rgba(0, 0, 0, 0.75);
|
|
border-radius: 5px;
|
|
border: 3px solid white;
|
|
color: #fff;
|
|
z-index: 1;
|
|
}
|
|
#loading-don{
|
|
width: 10vmax;
|
|
height: calc(10vmax / 120 * 115);
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.loading-text{
|
|
position: relative;
|
|
font-size: 1.5vmax;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
#p2-cancel-button{
|
|
display: none;
|
|
position: absolute;
|
|
bottom: -55px;
|
|
}
|