-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidget.css
95 lines (95 loc) · 1.96 KB
/
widget.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
#chh-widget {
width: 280px;
height: 165px;
background: #d6e5fa;
font: 13px helvetica, arial;
}
.player {
margin: 10px;
padding-top: 10px;
overflow: hidden;
width: 100%;
margin-bottom: 0;
}
.player .button {
background: #fff no-repeat center;
width: 10px;
height: 15px;
border: 1px solid #eb8518;
padding: 4px;
float: left;
}
.player .play {
background-image: url(play.png);
}
.player .pause {
background-image: url(pause.png);
}
.player .buffer {
background-color: #eb8518;
background-image: url(loader.gif);
}
.player .progress {
background: #fff;
width: 228px;
height: 15px;
border: 1px solid #aaa;
border-left: none;
float: left;
padding: 4px;
position: relative;
z-index: 10;
}
.player .progress .playlist-name {
color: #f24400;
font: bold 12px helvetica, arial;
padding-top: 1px;
overflow: hidden;
z-index: 100;
position: absolute;
}
.player .progress #chh-widget-progress-bar {
height: 23px;
background: #fdede6;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#chh-widget-time-left {
float: right;
color: gray;
margin: 2px 2px 0 0;
font-size: 12px;
}
.playlist {
height: 100px;
overflow-y: scroll;
}
.songs {
list-style-type: none;
margin: 0 10px 0 10px;
padding: 0;
width: 257px;
background: #fff;
}
.songs li {
font: 12px helvetica, arial;
padding: 4px;
margin: 0;
cursor: pointer;
}
.songs li.selected {
background: #ddd;
}
.logo {
float: right;
margin-right: 13px;
margin-top: 7px;
width: 125px;
}
.meta {
margin: 8px 0 0 12px;
color: gray;
float: left;
}