forked from lovethebomb/bandcamp-feed-playlist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
121 lines (102 loc) · 2.08 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
/* used during full collection/wishlist load */
html.loading {
cursor: progress;
}
/* search results hidden until click handlers set */
html.search-results-hidden #collection-search-grid,
html.search-results-hidden #wishlist-search-grid {
display: none;
}
#player-controls-container {
height: 68px;
position: fixed;
width: 290px;
background:rgba(0, 0, 0, 0.8);
top: auto;
left: auto;
right: auto;
bottom: 0;
margin: 0;
border-radius: 0;
z-index: 101;
}
#seekers {
margin-top: 6px;
margin-bottom: 3px;
display: flex;
justify-content: space-between;
padding: 0 10px;
}
#seekers > * {
color: white;
}
#seek-back, #seek-forward {
cursor: pointer;
}
#track_play_waypoint_controls {
margin-top: 6px;
}
#volume-container {
margin-top: -6px;
}
#volume-value, #position-container {
display: inline-block;
width: 80px;
}
#track_play_waypoints_controls_duration {
margin-right: 29px;
}
.player-controls {
color: #fcfcfc;
display: flex;
justify-content: left;
align-items: center;
height: 24px;
padding-left: 10px;
box-sizing: border-box;
line-height: 24px;
}
.player-controls a {
margin: 0 .7em;
display: inline-block;
}
#sidebar .track_play_waypoint.stream-activated, #sidebar .track_play_waypoint.activated {
bottom: 68px !important;
opacity: 1 !important;
}
/* collection page */
/* DOM items for which a playable track couldn't be found */
.unplayable .track_play_auxiliary {
cursor: not-allowed;
}
.unplayable .track_play_auxiliary > .item_link_play {
display: none;
}
.carousel-player .queue ol {
height: calc(100% - 80px);
}
h2:has(#playlist-header) {
font-size: 17px;
}
#playlist-header {
font-weight: 600;
}
#shuffler, #reverser {
color: blue;
cursor: pointer;
font-size: 0.7em;
}
#reverser {
margin-left: 10px;
}
.hidden {
display: none;
}
/* show more button */
.expand-container.show-button {
display: flex !important;
justify-content: center;
}
.expand-container.show-button > .show-more {
margin: 0 1em;
}