forked from yuanhao/Simple-Player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimpleplayer.css
More file actions
32 lines (32 loc) · 736 Bytes
/
simpleplayer.css
File metadata and controls
32 lines (32 loc) · 736 Bytes
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
.simple-player-container {
display: inline-block;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.simple-player-container > div > ul {
margin: 0;
padding-left: 0;
}
.simpleplayer-play-control {
background-image: url('images/play.png');
display: block;
width: 16px;
height: 16px;
bottom: -5px;
position: relative;
}
.simpleplayer-play-control:hover {
background-image: url('images/playing.png');
}
.simpleplayer-stop-control {
background-image: url('images/stop.png');
display: block;
width: 16px;
height: 16px;
bottom: -5px;
position: relative;
}
.simpleplayer-stop-control:hover {
background-image: url('images/stoped.png');
}