-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
84 lines (84 loc) · 1.79 KB
/
default.css
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
.contodo {
position: inherit;
display: block;
font-family: monospace;
font-size: inherit;
min-width: 100px;
min-height: 100px;
white-space: break-spaces;
overflow: auto;
margin: auto;
background-color: #fff;
color: black;
padding: 1px;
scroll-behavior: smooth;
}
.contodo > .log {
border-color: rgba(157, 157, 157, 0.2);
border-width: 0 0 1pt 0;
border-style: solid;
padding: 2px 5px;
}
.contodo > .log:first-child {
border-width: 1pt 0;
}
.contodo > .warn {
background-color: #fafab4;
}
.contodo > .warn > span.string {
color: #505000;
}
.contodo > .error {
background-color: #f0c8c8;
}
.contodo > .error > span.string {
color: #640000;
}
.contodo > .time {
opacity: 0.5;
font-size: 80%;
}
.contodo .null {
color: #808080;
}
.contodo .number, .contodo .bigint, .contodo .object, .contodo .boolean {
color: #32963c;
}
.contodo .array-string, .contodo .fn-args, .contodo .symbol, .contodo .trace-head {
color: #f0f;
}
.contodo .function, .contodo .object, .contodo .trace-file {
color: #2864fa;
}
.contodo table {
width: 100%;
text-align: left;
border-spacing: 0;
border-collapse: collapse;
border: 2px #333;
border-style: solid none;
}
.contodo thead, .contodo th {
font-weight: 700;
}
.contodo thead > tr, .contodo tr:nth-child(even) {
background-color: rgba(200, 200, 220, 0.1);
}
.contodo th, .contodo td {
padding: 3px 0;
border: 1px solid rgba(157, 157, 157, 0.2);
width: 1%;
}
.contodo-clear {
display: inline-block;
text-decoration: underline;
cursor: pointer;
font-size: 0.9em;
margin: 0 0 0 calc(100% - 2.8em);
background-color: rgba(255, 255, 255, 0.9);
border-radius: 0.2em;
z-index: 1;
}
.contodo.clearBtn {
margin-bottom: -2em;
}