forked from lopezs/ableplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathableplayer-playlist.css
More file actions
68 lines (63 loc) · 1.37 KB
/
ableplayer-playlist.css
File metadata and controls
68 lines (63 loc) · 1.37 KB
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
/*
Able Player playlist styles
http://terrillthompson.com/ableplayer
*/
/*
*
* playlist embedded into player
*
*/
.able .able-playlist {
font-size: 0.9em;
list-style-type: none;
margin: 0;
background-color: #FFFFFF;
padding: 5px 0;
}
.able .able-playlist li {
background-color: #DDDDDD; /* default background color of each item in playlist */
margin: 5px;
padding: 5px 10px;
border-radius: 15px;
-moz-border-radius: 15px;
}
.able .able-playlist li:hover,
.able .able-playlist li:focus,
.able .able-playlist li:active { /* playlist items when they have mouse or keyboard focus */
color: #FFFFFF;
background-color: #340449;
text-decoration: none;
}
.able .able-playlist li.able-current { /* currently selected playlist item */
color: #000000;
background-color: #FFEEB3;
font-weight: bold;
outline: none;
text-decoration: none;
}
.able .able-playlist li.able-current:after {
content: ' *';
}
/*
*
* external playlist
*
*/
.able-playlist {
}
.able-playlist li {
}
.able-playlist li:hover,
.able-playlist li:focus,
.able-playlist li:active { /* playlist items when they have mouse or keyboard focus */
text-decoration: none;
color: white;
background-color: black;
}
.able-playlist li.able-current { /* currently selected playlist item */
font-weight: bold;
text-decoration: underline;
}
.able-playlist li.able-current:after {
content: ' *';
}