-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathindex.css
66 lines (53 loc) · 1.35 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
@import url('base.css');
.jp-VarInspector {
flex-direction: column;
overflow: auto;
font-size: var(--jp-ui-font-size1);
background: var(--jp-layout-color1);
}
.jp-VarInspector-table {
font-family: monospace;
border-collapse: collapse;
margin: auto;
width: 100%;
color: var(--jp-content-font-color1);
}
.jp-VarInspector-table td,
.jp-VarInspector-table thead {
border: 1px solid;
border-color: var(--jp-layout-color2);
padding: 8px;
}
.jp-VarInspector-table tr:nth-child(even) {
background-color: var(--jp-layout-color1);
}
.jp-VarInspector-content tr:hover {
background-color: var(--jp-layout-color2);
}
.jp-VarInspector-table thead {
font-size: var(--jp-ui-font-size0);
text-align: center;
background-color: var(--jp-layout-color2);
color: var(--jp-ui-font-color1);
font-family: sans-serif;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
}
.jp-VarInspector-title {
font-size: var(--jp-ui-font-size1);
color: var(--jp-content-font-color1);
text-align: left;
padding-left: 10px;
}
.jp-VarInspector-deleteButton {
text-align: center;
width: 1em;
}
.jp-VarInspector-inspectButton {
text-align: center;
width: 1em;
}
.jp-VarInspector-varName {
font-weight: 600;
}