-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (53 loc) · 925 Bytes
/
styles.css
File metadata and controls
64 lines (53 loc) · 925 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
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
body{
background: #f1e7e7;
}
.audio-player-cont{
width:450px;
height: 135px;
background: #f3ebdc;
box-shadow: 0 0 6px 2px #c7a8a8;
color: #003ba9;
font-family: verdana;
font-size: 12;
top: 50%;
left: 50%;
transform: translateX(50%) translateY(50%);
position: absolute;
}
.logo{
float: left;
}
.player{
float: right;
margin: 7px;
}
.song-title{
width: 300px;
padding: 5px 0px 5px 0px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.song-slider{
width: 300px;
}
.current-time{
float: left;
font-size: 10px;
}
.duration{
float: right;
font-size: 10px;
}
.controllers{
clear: both;
display: table;
}
.controllers *{
vertical-align: middle;
margin-right: 2px;
}
.volume-slider{
width: 90px;
margin-left: 5px;
}