-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtable_style.css
More file actions
61 lines (61 loc) · 1.17 KB
/
table_style.css
File metadata and controls
61 lines (61 loc) · 1.17 KB
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
/* Table style used in the tracer. */
.bean-table {
border-collapse: collapse;
}
.bean-table tr,
.bean-table td,
.bean-table th {
border: 1px solid;
padding: 0 0.7em;
text-align: center;
}
.bean-table pre {
font-size: 1.3em;
}
.bean-table .io {
font-weight: normal;
}
@media (prefers-color-scheme: light) {
.bean-table pre {
font-weight: bold;
}
.bean-table caption {
color: rgb(95, 95, 95);
caption-side: bottom;
}
/* False */
.bean-table .F {
color: rgb(230, 41, 55);
}
/* True */
.bean-table .T {
color: rgb(0, 158, 47);
}
/* Integers */
.bean-table .I {
color: rgb(230, 156, 29);
}
/* Dim */
.bean-table .D {
font-weight: normal;
color: rgb(95, 95, 95);
}
}
@media (prefers-color-scheme: dark) {
.bean-table caption {
color: rgb(150, 150, 150);
caption-side: bottom;
}
.bean-table .F {
color: rgb(230, 41, 55);
}
.bean-table .T {
color: rgb(0, 158, 47);
}
.bean-table .I {
color: rgb(245, 193, 0);
}
.bean-table .D {
color: rgb(130, 130, 130);
}
}