36 lines
583 B
CSS
36 lines
583 B
CSS
#loading-title {
|
|
color: #757575;
|
|
font-size: 2.5rem;
|
|
font-weight: bold;
|
|
margin-top: 4rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#loading-description {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
#progress-container {
|
|
width: 80vw;
|
|
height: 2rem;
|
|
max-width: 500px;
|
|
border-radius: 2rem;
|
|
margin: 3rem auto auto;
|
|
background-color: #E0E0E0;
|
|
position: relative;
|
|
}
|
|
|
|
#progress-indicator {
|
|
position: absolute;
|
|
inset: 0;
|
|
background-image: linear-gradient(to right, #4CAF50, #00BCD4);
|
|
border-radius: 2rem;
|
|
transition: clip-path 200ms;
|
|
}
|
|
|
|
#progress-percentage {
|
|
color: #757575;
|
|
font-weight: bold;
|
|
font-size: 1.2rem;
|
|
}
|