summaryrefslogtreecommitdiffstats
path: root/toolkit/content/aboutwebrtc/aboutWebrtc.css
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--toolkit/content/aboutwebrtc/aboutWebrtc.css154
1 files changed, 154 insertions, 0 deletions
diff --git a/toolkit/content/aboutwebrtc/aboutWebrtc.css b/toolkit/content/aboutwebrtc/aboutWebrtc.css
new file mode 100644
index 0000000000..9836f3295e
--- /dev/null
+++ b/toolkit/content/aboutwebrtc/aboutWebrtc.css
@@ -0,0 +1,154 @@
+/* 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;
+}
+
+table {
+ font-family: monospace;
+}
+
+.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, .prefs 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 {
+ font-weight: bold;
+}
+
+.peer-connection table th,
+.peer-connection table td {
+ padding: 0.4em;
+}
+
+.peer-connection table tr:nth-child(even) {
+ background-color: #ddd;
+}
+
+.peer-connection table caption {
+ text-align: left;
+}
+
+.peer-connection table.raw-candidate {
+ text-align: left;
+}
+
+.bottom-border td {
+ border-bottom: thin solid;
+ border-color: black;
+}
+
+.peer-connection-config div {
+ margin-inline: 1em;
+}
+
+.peer-connection-config div:nth-of-type(odd) {
+ background-color: #ddd;
+}
+
+/* This is the pale colour scheme from:
+ https://personal.sron.nl/~pault/#sec:qualitative */
+.ice-trickled { background-color: #cceeff; }
+.ice-succeeded { background-color: #ccddaa; }
+.ice-failed { background-color: #ffcccc; }
+.ice-cancelled { background-color: #eeeebb; }
+
+.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;
+ }
+}
+
+.sdp-history {
+ display: flex;
+ height: 400px;
+}
+
+.sdp-history-link {
+ text-decoration: underline;
+}
+
+.sdp-history h5 {
+ background-color: #ddd;
+}
+
+.sdp-history div {
+ border: thin solid;
+ border-color: black;
+ flex: 1;
+ padding: 1em;
+ width: 50%;
+ overflow: scroll;
+}