blob: 8ec1697a2488498674deae073641512b02939a72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: calc(100% - 10px);
height: 100px;
background: #efefef99;
backdrop-filter: blur(10px);
border-radius: var(--border-radius);
max-width: 500px;
padding: 10px 20px;
display: grid;
}
#files {
background: #efefef;
padding: 10px;
border-radius: 20px;
margin: auto;
width: min-content;
white-space: nowrap;
}
#inner-progress {
width: 100%;
height: 5px;
border-radius: 5px;
background: #efefef;
overflow: hidden;
margin: auto;
}
#progress {
background: var(--primary);
height: 100%;
border-radius: 5px;
transition: width 0.2s ease;
}
|