-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (77 loc) · 1.8 KB
/
style.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
.controls{
display: flex;
direction: row;
flex-wrap: wrap;
justify-content: space-around;
}
.slidecontainer {
display: flex;
flex-direction: row;
}
.sliderdiv {
display: block;
text-align: center;
}
.dropdowndiv{
display: block;
text-align: center;
}
canvas{
user-select: none;
}
canvas#spectrum {
}
canvas#waveform {
}
.visual_container{
display: flex;
justify-content: space-evenly;
flex-flow: row wrap;
}
.analyser_container{
display: flex;
justify-content: flex-start;
flex-flow: column wrap;
}
.visualizer{
}
.wave_draw_canvas{
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
background: rgb(41,255,255); /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
margin: 20px;
padding: 0;
border-radius: 10px;
display: inline;
}
.slider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 50px; /* Set a specific slider handle width */
height: 50px; /* Slider handle height */
background: yellow; /* Green background */
cursor: pointer; /* Cursor on hover */
border-radius: 50%;
}
.slider::-moz-range-thumb {
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: rgb(40, 209, 45); /* Green background */
cursor: pointer; /* Cursor on hover */
}
input[type=range]
{
writing-mode: bt-lr; /* IE */
-webkit-appearance: slider-vertical; /* WebKit */
width: 8px;
padding: 0 5px;
}