35 lines
683 B
CSS
35 lines
683 B
CSS
body {
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: #000;
|
|
display: flex;
|
|
height: 100vh;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.progress {
|
|
background: white;
|
|
justify-content: flex-start;
|
|
border-radius: 100px;
|
|
align-items: center;
|
|
position: relative;
|
|
padding: 0 5px;
|
|
display: flex;
|
|
height: 40px;
|
|
width: 500px;
|
|
}
|
|
|
|
.progress-value {
|
|
animation: load 3s normal forwards;
|
|
box-shadow: 0 10px 40px -10px #2a5596;
|
|
border-radius: 100px;
|
|
background: #2a5596;
|
|
height: 30px;
|
|
width: 0;
|
|
}
|
|
|
|
@keyframes load {
|
|
0% { width: 0; }
|
|
100% { width: 100%; }
|
|
} |