• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright 2022 The Pigweed Authors
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 *     https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16body {
17  background-color: rgb(46, 46, 46);
18  color: #ffffff;
19  overflow: hidden;
20  margin: 0;
21}
22
23.table-container {
24  display: table;
25  width: 100%;
26  border-spacing: 30px 0px;
27}
28
29.log-header {
30  font-size: 18px;
31  font-family: monospace;
32}
33
34.log-container {
35  width: 100%;
36  height: calc(100vh - 50px);
37  overflow-y: auto;
38  border-top: 1px solid #DDD;
39  font-size: 18px;
40  font-family: monospace;
41}
42
43.log-header {
44  width: 100%;
45  font-weight: bold;
46  display: table-row;
47}
48
49.log-container .row>span {
50  display: table-cell;
51  padding: 20px 18px;
52
53}
54
55.log-header>span {
56  text-transform: capitalize;
57  overflow: hidden;
58    display: inline-block;
59    margin-left: 30px;
60}
61
62.log-entry {
63  display: table-row;
64}
65
66.log-entry>span {
67  display: table-cell;
68  overflow: hidden;
69  text-overflow: ellipsis;
70}
71
72.log-entry .msg {
73  flex: 1;
74}
75