forked from goje87/wav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wav.css
50 lines (44 loc) · 842 Bytes
/
wav.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
.hidden {
display: none;
}
.dir .add {
display: none;
}
.player {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 200px;
background-color: #fff;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.player .playlist {
margin-bottom: 0;
list-style-type: none;
padding-left: 10px;
height: 145px;
overflow: auto;
}
.player-progress-wrapper {
height: 5px;
width: 100%;
background-color: rgba(0,0,0,0.3);
position: relative;
}
.player-progress-wrapper .player-progress {
height: 100%;
width: 0;
background-color: rgba(255, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
}
.player-progress-wrapper .player-progress-buffer {
height: 100%;
width: 0;
background-color: rgba(255, 0, 0, 0.25);
position: absolute;
top: 0;
left: 0;
}