simplify array string
parent
f9fc5a2634
commit
6618976efd
@ -1,48 +1,55 @@
|
|||||||
.channel {
|
.channel {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.new-channel {
|
.new-channel {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin: 64px 0;
|
margin: 64px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input, label, button, .insert {
|
.hidden {
|
||||||
font-size: 1.5rem;
|
display: none;
|
||||||
font-family: monospace;
|
}
|
||||||
margin: 0 8px;
|
|
||||||
|
|
||||||
|
input,
|
||||||
|
label,
|
||||||
|
button,
|
||||||
|
.insert {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-family: monospace;
|
||||||
|
margin: 0 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type='range'], .insert {
|
input[type="range"],
|
||||||
width: 200px;
|
.insert {
|
||||||
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#insert {
|
#insert {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
button{
|
button {
|
||||||
border: 1px solid currentColor;
|
border: 1px solid currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
button#insert {
|
button#insert {
|
||||||
margin-right: 140px;
|
margin-right: 140px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bpm {
|
#bpm {
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid currentColor;
|
border-bottom: 1px solid currentColor;
|
||||||
width: 5ch;
|
width: 5ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
.notation {
|
.notation {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid currentColor;
|
border-bottom: 1px solid currentColor;
|
||||||
padding: 1ch;
|
padding: 1ch;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue