This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (87 loc) · 1.65 KB
/
styles.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
button {
background-color:#333;
border:2px solid #000;
border-radius:15px;
font-size:200%;
padding:0px;
transition-duration: 0.3s;
color:#fff;
}
button:hover {
box-shadow: 0 8px 20px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
background-color:#fff;
border:2px solid #333;
color:#000;
}
button:active {
background-color:#636;
color:#fff;
}
#playpause {
float:left;
border-right:none;
border-left:none;
border-radius:0px;
height:50px;
width:50px;
background-image:url(./svg/PlayPauseW.svg);
}
#playpause:hover {
background-image:url(./svg/PlayPause.svg);
}
#playpause:active {
background-image:url(./svg/PlayPauseW.svg);
}
#next {
float:left;
border-left:none;
border-radius:0px 15px 15px 0px;
height:50px;
width:50px;
background-image:url(./svg/NextW.svg);
}
#next:hover {
background-image:url(./svg/Next.svg);
}
#next:active {
background-image:url(./svg/NextW.svg);
}
#prev {
float:left;
border-right:none;
border-radius:15px 0px 0px 15px;
height:50px;
width:50px;
background-image:url(./svg/PrevW.svg);
}
#prev:hover {
background-image:url(./svg/Prev.svg);
}
#prev:active {
background-image:url(./svg/PrevW.svg);
}
progress {
width: 348px;
height: 20px;
background: #ccc;
border:none;
box-shadow: inset 0px 0px 10px #444;
}
progress::-webkit-progress-bar {
width: 348px;
height: 20px;
background: #ccc;
border:none;
box-shadow: inset 0px 0px 10px #444;
}
progress::-webkit-progress-value {
background: gold;
box-shadow: 0px 0px 10px gold;
}
progress::-moz-progress-bar {
background: gold;
box-shadow: 0px 0px 10px gold;
}
.amplitude-playing {
background: #3db1c1;
}