0b71764f44
Plus some minor widget code and layout improvements
66 lines
910 B
CSS
66 lines
910 B
CSS
@import "ardour-toolkit-theme/theme.css";
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background: rgb(62,61,61);
|
|
color: rgb(248,248,242);
|
|
font-family: Helvetica, Arial, sans-serif !important;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: fixed;
|
|
margin: 0;
|
|
}
|
|
|
|
div {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#mixer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
max-height: 600px;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.strip {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
min-width: 150px;
|
|
}
|
|
|
|
.strip-meter-fader {
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
|
|
.strip-label {
|
|
padding: 1em 0;
|
|
}
|
|
|
|
.toolkit-fader {
|
|
/* empty */
|
|
}
|
|
|
|
.toolkit-level-meter {
|
|
/* empty */
|
|
}
|
|
|
|
.toolkit-knob {
|
|
/* empty */
|
|
}
|