-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
255 lines (221 loc) · 4.01 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
body {
background-color: black;
color: #DFF;
}
#settings {
text-align: right;
z-index: 99;
position: fixed;
top: 25px;
right: 25px;
padding: 3px;
border: 1px green solid;
background: black;
}
#settings.settingsHidden {
width: 15px;
height: 16px;
overflow: hidden;
}
#settings #settings_recentlyPlayedCount {
width: 40px;
}
#playctrls {
z-index: 99;
position: fixed;
bottom: 25px;
right: 25px;
padding: 1px;
border: 1px green solid;
background: black;
}
#playctrls.somethingPlaying {
width: 300px;
height: 120px;
}
#playctrls.nothingPlaying {
width: 190px;
height: 70px;
margin: 5px;
padding: 5px;
}
#playctrls.nothingPlaying #playingNow_StatusImg { display: none; }
#playctrls.nothingPlaying #playingNow_status{ display: none; }
#playctrls #playingNow_StatusImg {
float: left;
width: 95px;
height: 100px;
border-radius: 10px;
margin-right: 10px;
margin-top: 10px;
margin-bottom: 5px;
margin-left: 5px;
}
#playctrls #playingNow_status {
width: calc(100% - 110px);
height: 40px;
display: inline-block;
margin-top: 5px;
}
#playctrls #playingNow_status div {
display: block;
height: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#playctrls button {
width: 50px;
font-size: 30px;
}
#playctrls #playctrls_vol {
width: 110px;
}
#playctrls .playctrls_shuffle_lbl {
display:inline;
}
/* Magic to change checkbox into shuffle button */
#playctrls .playctrls_shuffle_lbl input[type='checkbox'] { display:none; }
#playctrls .playctrls_shuffle_lbl input[type='checkbox'] + label:before {
font-size: 14px;
content: "🔀";
opacity: 20%;
display: inline;
}
#playctrls .playctrls_shuffle_lbl input[type='checkbox']:checked + label:before {
font-size: 14px;
content: "🔀";
opacity: 100%;
display: inline;
}
#playctrls #playctrls_device {
width: 40px;
height: 15px;
}
#loading {
z-index: 999;
position: fixed;
top: calc(50% - 75px/2);
left: calc(50% - 75px/2);
width: 75px;
height: 75px;
line-height: 75px;
border: 1px green solid;
background: black;
text-align: center;
display: none;
}
#error {
z-index: 999;
position: fixed;
bottom: 50px;
left: 5%;
width: 90%;
height: 150px;
padding: 20px;
border: 1px red solid;
background: black;
display: none;
}
a {
color: #DFF;
text-decoration: none;
}
.idx li {
display: inline-flex;
padding-right: 20px;
white-space: nowrap;
}
.arts li {
display: inline-block;
border: 1px black solid;
margin: 5px;
width: 200px;
height: 225px;
text-align: center;
font-size: 20px;
}
.arts li .expandView {
z-index: 9;
cursor: crosshair;
display: inline;
position: sticky;
float: right;
direction: rtl;
width: 0px;
height: 0px;
font-weight: bold;
font-size: 25px;
}
.arts li.selected .expandView {
position: relative;
float: right;
width: 100%;
text-align: right;
}
.arts li a {
display: block;
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: bold;
}
.arts li img {
display: flex;
width: 200px;
height: 200px;
padding-bottom: 5px;
border-radius: 50px;
}
.arts li.selected {
border: 1px gray solid;
display: block;
width: 100%;
height: auto;
}
.arts li.selected a {
display: block;
width: 200px;
overflow: visible;
font-weight: bold;
font-size: 25px;
}
.arts li div {
display: none;
}
.arts li div.selected {
display: block;
}
.arts li div ul.albums {
}
.arts li div li.album_info{
width: 230px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
}
.arts li div li.album_info a {
text-align: center;
font-size: 15px;
}
.arts li.selected p.genresList {
display: inline;
}
.arts li.selected ul.genresList {
display: inline;
}
.arts li.selected .genresList li {
display: inline;
}
.arts li.selected .genresList a {
display: inline;
font-weight: unset;
font-size: initial;
}
.arts li.selected .genresList li.unknown_genre {
color: #333;
font-weight: unset;
font-size: initial;
}