-
Notifications
You must be signed in to change notification settings - Fork 9
/
audiplay.css
70 lines (63 loc) · 1.21 KB
/
audiplay.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
.ap_container {
display: inline-block;
text-align: center;
width: 30%;
position: absolute;
overflow: hidden;
padding: 5px;
background: rgba(245, 236, 242);
border-radius: 4px;
transition: all 1s;
}
.ap_controls {
width: 100%;
display: flex;
position: relative;
flex-direction: row;
font-size: large;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
cursor: pointer;
}
.ap_controls span {
margin: 5px;
display: inline-block;
}
.ap_container .playpausebtn {
border-radius: 50%;
font-size: larger;
}
.ap_container svg {
width: 25px;
height: 25px;
}
.ap_controls .duration {
width: 80%;
margin-right: 10px;
bottom: 4px;
}
.ap_controls input[type="range"] {
-webkit-appearance: none;
width: 100%;
outline: none;
height: 2px;
margin: 0 15px;
background: cyan;
}
.ap_controls:hover input[type="range"]::-webkit-slider-thumb{
-webkit-appearance: none;
height: 20px;
width: 20px;
border-radius: 50%;
cursor: pointer;
background: darkturquoise;
}
.ap_controls input[type="range"]::-webkit-slider-thumb{
-webkit-appearance: none;
height: 0px;
}
.ap_sound {
padding: 4px;
}
.ap_time {
margin: 4px;
}