-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbbplayer.css
More file actions
110 lines (95 loc) · 1.83 KB
/
Copy pathbbplayer.css
File metadata and controls
110 lines (95 loc) · 1.83 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
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
.bbplayer {
font: 200 16px/1.5 Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;
color: #898989;
display: flex;
justify-content: center;
align-items: center;
}
.bbplayer span {
display: inline-block;
height: 36px;
}
.bb-play {
width: 36px;
border: 6px solid #CFCFCF;
border-radius: 50%;
background: transparent;
background-image: url('../images/play.png');
background-repeat: no-repeat;
background-position: 7px center;
cursor: pointer;
}
.bb-playing {
width: 36px;
background-image: url('../images/pause.png');
background-position: center center;
}
.bb-forward {
width: 36px;
background: transparent;
background-image: url('../images/forward.png');
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
}
.bb-rewind {
width: 36px;
background: transparent;
background-image: url('../images/rewind.png');
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
}
.bb-track-display {
font-size: 14pt;
}
.bb-trackTime {
height: auto !important;
padding-left: 5px;
}
.bb-trackTime:after {
content: "/";
font-weight: bolder;
color: silver;
}
.bb-trackLength {
height: auto !important;
padding-right: 5px;
}
.bb-trackTitle {
height: auto !important;
}
.bb-album-display {
display: none;
}
.bb-artist {
font-size: 14px;
}
.bb-album {
font-size: 14px;
}
.bb-albumCover {
height: 38px;
width: 38px;
line-height: 38px;
vertical-align: top;
background: #999999;
border: 1px solid #666666;
box-shadow: 0 0 5px rgba(0,0,0,0.3);
margin-left: 5px;
display: inline-block;
}
.bb-debug {
height:10em;
width: 19em;
border: 1px solid #DDD;
border-radius: 5px;
margin: 10px;
padding: 10px;
overflow: auto;
font-weight: normal;
font-size: 14px/1.5;
}
.bbplayer div.playerWindow {
text-align: center;
}