13
0
livetrax/share/web_surfaces/builtin/mixer/main.css
Luciano Iam 0b71764f44
WS: Add strip labels in the mixer demo
Plus some minor widget code and layout improvements
2020-08-19 18:58:26 +02:00

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 */
}