This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudioplayer.css
132 lines (115 loc) · 2.22 KB
/
audioplayer.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
.playerDisplay {
box-sizing:border-box;
}
.playerDisplay .player {
width:500px;
line-height:0;
}
.playerDisplay .message {
height:20px;
text-align:center;
font-family:Helvetica, Arial, sans-serif;
}
.playerDisplay .controls {
background:#333;
display:flex;
border-radius:10px;
flex-direction:row;
justify-content:space-between;
align-items:center;
box-shadow:5px 5px 10px 0px #777;
padding:10px;
}
.playerDisplay .button {
color:white;
text-align:center;
cursor:pointer;
background:transparent;
border:none;
outline:none;
width:5%;
}
.playerDisplay .play {
background:url('chrome-extension://__MSG_@@extension_id__/play.png') no-repeat scroll 0 0 transparent;
height:16px;
width:16px;
}
.playerDisplay .pause {
background:url('chrome-extension://__MSG_@@extension_id__/pause.png') no-repeat scroll 0 0 transparent;
height:16px;
width:16px;
}
.playerDisplay .volume-up {
background:url('chrome-extension://__MSG_@@extension_id__/volume-up.png') no-repeat scroll 0 0 transparent;
height:16px;
width:16px;
cursor:context-menu;
}
.playerDisplay .track {
position:relative;
height:10px;
vertical-align:top;
background:#fff;
width:51%;
cursor:pointer;
}
.playerDisplay .progress {
position:absolute;
width:0%;
height:100%;
background:#5CF;
border-radius:0px;
}
.playerDisplay .scrubber {
position:absolute;
width:18px;
height:18px;
margin:-4px 0 0 -9px;
background:#5CF;
border:solid 3px #ddd;
cursor:pointer;
box-shadow:0 0 5px #000, inset 0 0 4px #400;
}
.playerDisplay .count {
width:15%;
color:#FFF;
}
.playerDisplay .divider {
margin:0 5px;
}
.playerDisplay .volume {
width:15%;
cursor:pointer;
}
.playerDisplay .overlay {
background-color:rgb(0, 0, 0);
opacity:0.7; /* Safari, Opera */
-moz-opacity:0.70; /* FireFox */
filter:alpha(opacity=70); /* IE */
z-index:20;
height:100%;
width:100%;
background-repeat:repeat;
position:fixed;
top:0px;
left:0px;
}
.playerDisplay .overlayPlayer{
position:fixed;
top:50%;
left:50%;
margin-top:-100px;
margin-left:-200px;
opacity:1;
z-index:1002;
}
.playerDisplay p {
color:#FFF;
font-size:30px;
}
.playerDisplay .initLoader {
position:absolute;
top:90%;
left:35%;
width:100px;
}