-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (51 loc) · 1.19 KB
/
style.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
.playlist-duration {
background-color: white;
padding: 10px;
border: 1px solid black;
margin-top: 10px;
margin-bottom: 10px;
font-family:monospace;
border-radius: 12px;
font-weight: bold;
font-size: medium;
}
.playlist-duration .text-container{
display: flex;
justify-content: start;
gap: 5px;
}
.playlist-duration .total-duration {
background-color: #9cc6ff;
color: #3966ee;
padding: 3px;
border: 1px #3966ee solid;
border-radius: 5px;
}
.playlist-duration .watched-duration {
background-color: #ffabab;
color: #ce1321;
padding: 3px;
border: 1px #ce1321 solid;
border-radius: 5px;
}
.playlist-duration .remaining-duration {
background-color: rgb(254 240 138);
color: #c48800;
padding: 3px;
border: 1px #c48800 solid;
border-radius: 5px;
}
.playlist-duration .progress-container {
background-color: rgb(175, 175, 175);
height: 10px;
margin-top: 10px;
border-radius: 5px;
overflow: hidden;
position: relative;
}
.playlist-duration .progress-bar {
background-color: rgb(244, 65, 65);
height: 100%;
width: 0%;
position: absolute;
}