summaryrefslogtreecommitdiff
path: root/share/web_surfaces/builtin/mixer-demo/css/main.css
blob: 559532af428d51e630b6904201af4580f6840f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
html {
    height: 100%;
}

body {
    background: rgb(62,61,61);
    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;
    overflow: hidden;
    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 {
    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(248,248,242);
}

.message-out {
    color: rgb(172,128,255);
}

.info {
    color: rgb(99,208,230);
}

.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;
}