summaryrefslogtreecommitdiff
path: root/share/web_surfaces/builtin/mixer-demo/css/main.css
diff options
context:
space:
mode:
authorLuciano Iam <lucianito@gmail.com>2020-04-09 16:34:16 +0200
committerRobin Gareus <robin@gareus.org>2020-04-09 20:56:46 +0200
commit891c63fe892b59fcf5a5579191ea844fad9f9d07 (patch)
treee93223d81aa26654fca0357750882d6c84b9d8c7 /share/web_surfaces/builtin/mixer-demo/css/main.css
parentd694ee97c7a77172943ab342c9d5edd9bb57d2d0 (diff)
Update HTML/CSS/JS frontend
Diffstat (limited to 'share/web_surfaces/builtin/mixer-demo/css/main.css')
-rw-r--r--share/web_surfaces/builtin/mixer-demo/css/main.css92
1 files changed, 92 insertions, 0 deletions
diff --git a/share/web_surfaces/builtin/mixer-demo/css/main.css b/share/web_surfaces/builtin/mixer-demo/css/main.css
new file mode 100644
index 0000000000..5578ab3e55
--- /dev/null
+++ b/share/web_surfaces/builtin/mixer-demo/css/main.css
@@ -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;
+}