blob: b9021dde6f29928503bf05249e9dbed39edaa325 (
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
html {
background-color: #edeceb;
font: message-box;
}
.controls {
font-size: 1.1em;
display: inline-block;
margin: 0 0.5em;
}
.control {
margin: 0.5em 0;
}
.control > button {
margin: 0 0.25em;
}
.message > p {
margin: 0.5em 0.5em;
}
.log p {
font-family: monospace;
padding-left: 2em;
text-indent: -2em;
margin-top: 2px;
margin-bottom: 2px;
}
#content > div {
padding: 1em 2em;
margin: 1em 0;
border: 1px solid #afaca9;
border-radius: 10px;
background: none repeat scroll 0% 0% #fff;
}
.section-heading *
{
display: inline-block;
}
.section-heading > button {
margin-left: 1em;
margin-right: 1em;
}
.peer-connection > h3
{
background-color: #ddd;
}
.peer-connection table {
width: 100%;
text-align: center;
border: none;
}
.peer-connection table th,
.peer-connection table td {
padding: 0.4em;
}
.peer-connection table tr:nth-child(even) {
background-color: #ddd;
}
.info-label {
font-weight: bold;
}
.section-ctrl {
margin: 1em 1.5em;
}
div.fold-trigger {
color: blue;
cursor: pointer;
}
@media screen {
.fold-closed {
display: none !important;
}
}
@media print {
.no-print {
display: none !important;
}
}
|