13
0
livetrax/share/web_surfaces/builtin/mixer-demo/css/main.css
Luciano Iam 2ba8dab95e
WebSockets: update JS client and demo
avoid hardcoded node name strings in mixer-demo
improve mixer-demo design
split ardour.js client into control and metadata mixins
rename JS client class Ardour to ArdourClient
JS client improve mixin implementation
JS client improve manifest parser
NO-OP whitespace and comments
NO-OP update websurface manifest versions
add Ardour icon in mixer-demo
improve mixer-demo scrolling on touch screens
2020-04-17 20:15:10 +02:00

123 lines
1.6 KiB
CSS

html {
height: 100%;
}
body {
background: #282923;
color: rgb(248,248,242);
font-family: Helvetica, Arial, sans-serif;
height: 100%;
width: 100%;
position: fixed;
margin: 0;
}
div {
box-sizing: border-box;
}
#main {
display: flex;
flex-direction: column;
height: 100%;
}
#surface {
flex: 1;
display: flex;
flex-direction: column;
box-shadow: 0px 0px 10px #000;
}
#top {
display: flex;
align-items: center;
padding: 0.25em 0.5em;
box-shadow: 0px 0px 10px #000;
}
#top > img {
height: 24px;
}
#top > span {
opacity: 0.75;
margin-left: 12px;
}
#log {
height: 7em;
overflow: scroll;
overflow-x: hidden;
background: rgba(0,0,0,0.4);
}
#strips {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
overflow: scroll;
overflow-x: hidden;
background: rgba(0,0,0,0.2);
}
#log pre {
margin: 0;
font-family: Menlo, monospace;
font-size: 1em;
}
.message-in {
color: rgb(166,226,44);
}
.message-out {
color: rgb(172,128,255);
}
.error {
color: rgb(249,36,114);
}
.comp-name {
font-size: 1.5em;
font-weight: bold;
}
.strip {
margin: 20px;
padding: 20px 40px;
background: rgba(0,0,0,0.1);
border-radius: 5px;
width: 100%;
max-width: 768px;
}
.slider-meter {
float: right;
}
.strip-slider {
margin-top: 20px;
}
.plugin {
margin: 40px 0;
padding: 20px 40px;
background: rgba(0,0,0,0.05);
border-radius: 5px;
}
.plugin-enable {
float: right;
}
.plugin-param {
margin: 40px;
}
.plugin-param.boolean {
display: inline-block;
}