1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7body {
8    background-color: black;
9    color: white;
10}
11
12table, th, td {
13    border: 1px solid black;
14    border-collapse: collapse;
15}
16
17th, td {
18    padding: 5px;
19}
20
21th {
22    text-align: left;
23}
24
25div.container {
26}
27
28div.textcontainer {
29    font-family: monospace !important;
30    font-size: 150%;
31}
32
33div.zconsole {
34    white-space: pre-wrap !important;
35    scroll-behavior: auto;
36    border: 1px solid gray;
37    padding: 5px;
38    width: 95%;
39    height: 70%;
40    overflow: auto;
41}
42
43div.output {
44    scroll-behavior: auto;
45    border: 1px solid gray;
46    padding: 5px;
47    margin-top: 20px;
48    width: 95%;
49    height: 10%;
50    overflow: auto;
51}
52
53div.inputbar {
54    margin-top: 5px;
55    width: 100%;
56}
57
58.zconsole em {
59    color: red;
60}
61