-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmedia-player.css
executable file
·75 lines (63 loc) · 1.07 KB
/
media-player.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
body { font-family:'verdana'; }
h1 {
font-size:16px;
color:#333;
}
#media-player {
float:left;
padding:1em 1em .5em;
background-color:#E5E9F2;
}
video {
border:0px solid #333;
background:#000;
}
img {
}
.play {
text-indent:-9999px;
width:30px;
height:30px;
border:none;
cursor:pointer;
margin-bottom: -2.5px;}
}
.pause {
text-indent:-9999px;
width:30px;
height:30px;
border:none;
cursor:pointer;
margin-bottom: -2.5px;}
.volume-plus {
text-indent:-9999px;
width:30px;
height:30px;
border:none;
cursor:pointer;
margin-bottom: -2.5px;}
.volume-minus {
text-indent:-9999px;
width:30px;
height:30px;
border:none;
cursor:pointer;
margin-bottom: -2.5px;}
progress {
color:#fff;
font-size:12px;
width:100%;
height:16px;
border:none;
left: 0;
background:#434343;
position: absolute;
}
progress::-moz-progress-bar { background:#434343; }
progress::-webkit-progress-value { background: #434343; }
#progressed_bar {
width: 100%;
height: 16px;
border:none;
background:#888;
}