blob: 53b55f09e739c0b117cb819d90b68db5366b35bf (
plain)
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
|
* { box-sizing: border-box }
html,body { margin: 0; padding: 0; width: 100%; height: 100%; font-family: 'Helvetica', sans-serif; font-weight: 300; }
body {
background: linear-gradient(52deg, #fde, #ffe);
}
header {
position: fixed;
bottom: 10px;
left: 10px;
background: white;
padding: 10px;
}
.app {
display: flex;
flex-direction: row;
}
.player {
min-width: 424px;
min-height: 256px;
}
.params {
font-size: 10px;
}
.paramGroup {
background: rgba(255,255,255,0.2);
}
.paramGroup > label {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 2px 0;
margin-bottom: 3px;
}
.paramGroup h3 {
margin: 0; padding: 0;
}
.slider {
margin-bottom: 3px;
}
.slider input[type=text] {
width: 20px;
border: 1px solid transparent;
margin-right: 5px;
}
.slider input[type=text]:focus {
border: 1px solid #ddd; background: white;
}
.slider {
display: flex;
flex-direction: row;
}
.slider > label {
display: flex;
justify-content: space-between;
width: 120px;
text-align: right;
}
|