-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
121 lines (108 loc) · 2.91 KB
/
styles.css
File metadata and controls
121 lines (108 loc) · 2.91 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#spotify-mini-player,
#spotify-mini-player * {
all: unset;
box-sizing: border-box !important;
}
#spotify-mini-player {
position: fixed !important;
bottom: 20px !important;
right: 20px !important;
width: 220px !important;
padding: 12px !important;
background: rgba(0, 0, 0, 0.85) !important;
color: #fff !important;
font-family: system-ui, sans-serif !important;
border-radius: 8px !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
z-index: 999999 !important;
transition: width 0.2s ease, max-height 0.2s ease !important;
overflow: hidden !important;
min-height: 32px !important;
}
#spotify-mini-player img {
width: 100px !important;
height: 100px !important;
margin-bottom: 8px !important;
border-radius: 4px !important;
}
#loading {
font-size: 14px !important;
font-weight: 500 !important;
margin-bottom: 8px !important;
color: #aaa !important;
}
/* #track-info,
#track-artists {
text-align: center !important;
font-size: 14px !important;
line-height: 1.4 !important;
margin-bottom: 2px !important;
font-weight: 600 !important;
} */
#track-info,
#track-artists {
display: block !important;
width: 100% !important;
text-align: center !important;
font-size: 14px !important;
line-height: 1.4 !important;
margin-bottom: 2px !important;
font-weight: 600 !important;
}
#album-art {
display: block !important;
margin: 0 auto 8px auto !important;
}
#track-artists {
font-weight: 400 !important;
margin-bottom: 6px !important;
}
.controls {
display: flex !important;
justify-content: center !important;
align-items: center !important;
}
.controls button {
background: none !important;
border: none !important;
font-size: 18px !important;
margin: 0 6px !important;
padding: 4px !important;
color: #fff !important;
cursor: pointer !important;
border-radius: 4px !important;
transition: background 0.2s ease !important;
}
.controls button:hover {
background: rgba(255, 255, 255, 0.1) !important;
}
#spotify-mini-player.collapsed {
width: 32px !important;
max-height: 32px !important;
padding: 4px !important;
}
#spotify-mini-player.collapsed .player-body {
display: none !important;
}
#toggle-button {
display: flex !important;
align-items: center !important;
justify-content: center !important;
position: absolute !important;
bottom: 4px !important;
right: 4px !important;
width: 24px !important;
height: 24px !important;
padding: 0 !important;
background: rgba(255, 255, 255, 0.2) !important;
border: none !important;
border-radius: 50% !important;
font-size: 16px !important;
color: #fff !important;
cursor: pointer !important;
outline: none !important;
z-index: 10000 !important;
line-height: normal !important;
}