-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic.css
59 lines (49 loc) · 854 Bytes
/
music.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
body{
font-family: sans-serif;
}
#wrapper{}
.songMouseOver {}
.songMouseOver:hover {
color: red;
}
.albumTitle {
color: red;
font-size: 20px;
}
#audioplayer{
margin-top: 20px;
width: 500px;
height: 100px;
border: solid;
float: left;
display:none;
}
#songName{
margin-top: 10px;
margin-left: 15px;
}
#timeline{
width: 400px;
height: 18px;
background: black;
margin-top: 20px;
float: left;
border-radius: 15px;
}
#playhead{
width: 18px;
height: 18px;
border-radius: 50%;
margin-top: ;
background: red;
}
#pButton{
height:60px;
width: 60px;
border: none;
background-size: 50% 50%;
background-position: center;
float: left;
}
.play{background: url('play.png') no-repeat;}
.pause{background: url('pause.png') no-repeat;}