You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
621 B
CSS
56 lines
621 B
CSS
3 years ago
|
.channel {
|
||
3 years ago
|
display: flex;
|
||
|
align-items: center;
|
||
3 years ago
|
}
|
||
|
|
||
|
.new-channel {
|
||
3 years ago
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin: 64px 0;
|
||
3 years ago
|
}
|
||
|
|
||
3 years ago
|
.hidden {
|
||
|
display: none;
|
||
|
}
|
||
3 years ago
|
|
||
3 years ago
|
input,
|
||
|
label,
|
||
|
button,
|
||
|
.insert {
|
||
|
font-size: 1.5rem;
|
||
|
font-family: monospace;
|
||
|
margin: 0 8px;
|
||
3 years ago
|
}
|
||
|
|
||
3 years ago
|
input[type="range"],
|
||
|
.insert {
|
||
|
width: 200px;
|
||
3 years ago
|
}
|
||
|
|
||
|
#insert {
|
||
3 years ago
|
margin: 0;
|
||
3 years ago
|
}
|
||
|
|
||
3 years ago
|
button {
|
||
|
border: 1px solid currentColor;
|
||
3 years ago
|
}
|
||
|
|
||
|
button#insert {
|
||
3 years ago
|
margin-right: 140px;
|
||
3 years ago
|
}
|
||
|
|
||
|
#bpm {
|
||
3 years ago
|
border: none;
|
||
|
border-bottom: 1px solid currentColor;
|
||
|
width: 5ch;
|
||
3 years ago
|
}
|
||
|
|
||
|
.notation {
|
||
3 years ago
|
flex-grow: 1;
|
||
|
border: none;
|
||
|
border-bottom: 1px solid currentColor;
|
||
|
padding: 1ch;
|
||
|
font-size: 1.5rem;
|
||
|
width: auto;
|
||
|
}
|