-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
78 lines (67 loc) · 1.6 KB
/
index.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
body {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 16px;
background-color: #eee8d5;
max-width: 1200px;
margin: 0px auto;
padding: 5px;
color: #073642;
--keyword-color: #93a1a1;
--name-color: LightGreen;
--type-color: LightBlue;
--no-value-color: Gray;
--panel-background: #002b36;
}
h1, p{
padding: 0px 10px;
}
#content {
width: 100%;
padding: 0px;
height: 750px;
display: grid;
grid-template-columns: 50% 50%;
grid-template-rows: 100%;
grid-gap: 1.5rem;
}
.panel {
padding: 1rem;
box-sizing: border-box;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
width: 100%;
height: 100%;
box-sizing: border-box;
border-radius: 10px;
background: var(--panel-background);
/* color: #93a1a1; */
/* color: #cacaca; */
color: #efefef;
font-size: 14px;
overflow: auto;
}
#mlscript-input {
resize: none;
outline: none;
}
#mlscript-output {
width: 130%;
}
#mlscript-output > table {
border-collapse: collapse;
}
#mlscript-output > table > thead {
font-weight: bold;
}
#mlscript-output td {
padding: 0.25rem 0.5rem;
border: 1px solid white;
}
#mlscript-output td.name {
color: var(--name-color);
}
#mlscript-output td.type {
color: var(--type-color);
}
#mlscript-output td.no-value {
color: var(--no-value-color);
}