blob: a3cde4d9f972e28168baba8467a985fd8b8cf717 (
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#music-player {
display: flex;
flex-direction: row;
gap: 1rem;
padding: 1rem;
border: 1px solid var(--color-soft-outline);
background-color: var(--color-soft-fill);
}
#song-album-art {
width: 5rem;
}
#track {
display: flex;
flex-direction: column;
flex-grow: 1;
gap: 0.2rem;
}
#song-title {
color: var(--color-text);
font-size: 1rem;
}
#song-details, #song-artist, #song-album {
color: var(--color-text-muted);
}
#song-progress-bar {
display: flex;
flex-direction: row;
align-items: center;
color: var(--color-text-muted);
width: 100%;
gap: 0.5rem;
}
#song-progress-bar-fill {
position: relative;
height: 4px;
flex-grow: 1;
}
#song-progress-bar-background {
background-color: var(--color-soft-fill);
height: 4px;
border-radius: 2px;
width: 100%;
}
#song-progress-bar-thumb {
background-color: var(--color-text-link);
height: 4px;
border-radius: 2px;
position: absolute;
left: 0;
top: 0;
}
#metadata {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 0.5rem;
margin: 0.5rem 0;
}
#connection-status {
color: var(--color-text-muted);
display: flex;
flex-direction: row;
align-items: baseline;
gap: 0.3rem;
flex-grow: 1;
}
#connection-status-indicator {
display: inline-block;
background-color: #ff4136;
border-radius: 50%;
width: 0.5rem;
height: 0.5rem;
}
#open-in-spotify {
display: none;
}
|