-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathindex.css
More file actions
50 lines (42 loc) · 750 Bytes
/
index.css
File metadata and controls
50 lines (42 loc) · 750 Bytes
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
:host {
position: sticky;
bottom: 0;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
column-gap: 12px;
padding: 8px;
border-top: 1px solid rgb(var(--active-grey));
background-color: rgb(var(--white));
}
#caption {
flex-basis: max-content;
flex-grow: 0;
flex-shrink: 0;
margin: 0;
}
#progress {
flex: 1;
height: 8px;
border-radius: 6px;
overflow: hidden;
background-color: rgb(var(--passive-grey));
color: #ec6cb9;
}
#progress-bar {
background-color: currentColor;
height: 100%;
width: 0;
transition: width 1s ease-in-out;
}
#cover-link {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
}
#cover-link:not([href]) {
display: none;
}