aboutsummaryrefslogtreecommitdiff
path: root/apps/speaker/speaker.css
blob: 075068b0cfbff14c70f38d06fed22f1a492f8f36 (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
body, h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
}

#controlsDiv {
    margin: 6px;
}

#connectionText {
    background-color: rgb(239, 89, 75);
    border: none;
    border-radius: 4px;
    padding: 8px;
    display: inline-block;
    margin: 4px;
}

#startButton {
    padding: 4px;
    margin: 6px;
}

#fftCanvas {
    border-radius: 16px;
    margin: 6px;
}

#bandwidthCanvas {
    border: grey;
    border-style: solid;
    border-radius: 8px;
    margin: 6px;
}

#streamStateText {
    background-color: rgb(93, 165, 93);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-block;
    margin: 6px;
}

#connectionStateText {
    background-color: rgb(112, 146, 206);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-block;
    margin: 6px;
}

#propertiesTable {
    border: grey;
    border-style: solid;
    border-radius: 4px;
    padding: 4px;
    margin: 6px;
    margin-left: 0px;
}

th, td {
    padding-left: 6px;
    padding-right: 6px;
}

.properties td:nth-child(even) {
    background-color: #D6EEEE;
    font-family: monospace;
}

.properties td:nth-child(odd) {
    font-weight: bold;
}

.properties tr td:nth-child(2) { width: 150px; }