-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (81 loc) · 1.19 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
html,
body {
height: 100%;
}
body {
background: #666;
}
input[type=range] {
}
h1, h2, h3, h4, p, div, input {
margin: 0;
padding: 0;
}
#app {
padding-top: 50px;
}
#header {
text-align: center;
}
#analyser_container {
height: 100px;
width: 100%;
}
#analyser_canvas {
border: 1px solid #AAAAAA;
overflow: hidden;
}
#row_container {
width: 600px;
margin: 0 auto;
padding: 20px;
background: #ffffff;
border-radius: 30px;
-webkit-box-shadow: 0px 0px 20px 2px rgba(255,255,255,0.9);
-moz-box-shadow: 0px 0px 20px 2px rgba(255,255,255,0.9);
box-shadow: 0px 0px 20px 2px rgba(255,255,255,0.9);
}
.row {
width: 100%;
padding-bottom: 20px;
}
.container {
margin-bottom: 10px;
}
#gain_slider_container {
position: relative;
width: 200px;
}
#gain_slider {
width: 200px;
}
#freq_slider_container {
position: relative;
width: 100%;
}
#freq_slider {
width: 100%;
}
.param_label {
display: inline-block;
}
.param_value {
display: inline-block;
}
.param_slider {
position: relative;
z-index: 100;
}
.axis_label {
position: absolute;
z-index: 0;
font-size: 0.75em;
}
.axis_label.left {
left: 0px;
bottom: 0px;
}
.axis_label.right {
right: 0px;
bottom: 0px;
}