Clean up top-level source tree

Collect architecture independent data in 'share' subfolder.
This also matches the install path
This commit is contained in:
Robin Gareus 2020-02-23 15:26:48 +01:00
parent 96ef1dc0ed
commit 54c4d3adc5
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
564 changed files with 25 additions and 25 deletions

View file

@ -0,0 +1,92 @@
html {
height: 100%;
}
body {
background: #282923;
color: rgb(248,248,242);
font-family: Helvetica, Arial, sans-serif;
height: 100%;
margin: 0;
}
div {
box-sizing: border-box;
}
#main {
display: flex;
flex-direction: column;
height: 100%;
}
#strips {
flex: 1;
overflow: scroll;
overflow-x: hidden;
box-shadow: 0px 0px 10px #000;
}
#log {
height: 6em;
overflow: scroll;
overflow-x: hidden;
}
#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: 5%;
padding: 2.5% 5%;
background: rgba(0,0,0,0.1);
border-radius: 5px;
}
.slider-meter {
float: right;
}
.strip-slider {
margin-top: 2.5%;
}
.plugin {
margin: 5%;
padding: 2.5% 5%;
background: rgba(0,0,0,0.05);
border: solid 1px rgba(255,255,255,0.1);
border-radius: 5px;
}
.plugin-enable {
float: right;
}
.plugin-param {
margin: 5%;
}
.plugin-param.boolean {
display: inline-block;
}

View file

@ -0,0 +1,50 @@
.widget-switch {
display: block;
-webkit-appearance:none;
width: 37px;
height: 37px;
border: 3.5px solid rgb(248,248,242);
border-radius: 50%;
}
.widget-switch:checked {
background: rgb(235,141,33);
}
.widget-slider {
display: block;
-webkit-appearance: none;
height: 37px;
width: 100%;
background: transparent;
}
.widget-slider::-webkit-slider-runnable-track {
height: 4px;
background: rgb(248,248,242);
}
.widget-slider::-webkit-slider-thumb {
-webkit-appearance: none;
height: 36px;
width: 36px;
margin-top: -16px;
border-radius: 50%;
background: rgb(235,141,33);
}
/* repeat slider style for firefox */
.widget-slider::-moz-range-track {
height: 4px;
background: rgb(248,248,242);
}
.widget-slider::-moz-range-thumb {
-webkit-appearance: none;
height: 36px;
width: 36px;
margin-top: -16px;
border-radius: 50%;
background: rgb(235,141,33);
}