-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathanalyze.css
74 lines (64 loc) · 1.07 KB
/
analyze.css
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background: #f5f5f5;
border-radius: 8px;
}
.upload-section {
margin-bottom: 20px;
display: flex;
gap: 10px;
}
.progress-bar {
width: 100%;
height: 20px;
background: #ddd;
border-radius: 10px;
overflow: hidden;
}
.progress {
width: 0%;
height: 100%;
background: #4caf50;
transition: width 0.3s ease;
}
#status {
margin-top: 10px;
text-align: center;
color: #666;
}
button {
padding: 8px 16px;
border: none;
border-radius: 4px;
background: #4caf50;
color: white;
cursor: pointer;
}
button:disabled {
background: #ccc;
cursor: not-allowed;
}
.progress-bar-container {
display: flex;
align-items: center;
gap: 10px;
width: 100%;
}
.progress-bar {
flex-grow: 1;
}
.time-label {
font-family: monospace;
font-size: 14px;
color: #666;
min-width: 45px;
}
.time-current {
font-family: monospace;
font-size: 16px;
color: #333;
text-align: center;
margin: 5px 0;
}