-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
87 lines (71 loc) · 1.18 KB
/
style.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
85
86
87
@import url("fira/fira.css");
html {
font-size: 13px;
line-height: 1.4rem;
}
body {
margin: 0;
font-family: "Fira Sans";
font-size: inherit;
}
#topHalf {
height: 50vh;
width: 100vw;
overflow-y: auto;
border-bottom: 1px solid #ddd;
font-family: "Fira Mono";
font-feature-settings: "liga" 0;
}
.CodeMirror {
font-family: inherit;
}
#microVizContainer {
padding: 0;
width: 100vw;
}
#macroVizScroller {
overflow: auto;
height: 100%;
}
#bottomHalf {
height: 50vh;
position: relative;
overflow: hidden;
}
#legend {
position: absolute;
bottom: 0px;
left: 0px;
border: 1px solid black;
}
parseError {
display: block;
white-space: pre-wrap;
color: maroon;
background: yellow;
padding: 0 4px;
padding: 4px;
opacity: 1;
max-height: 100pt;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
/* errors */
#errorDiv {
color: hsl(0, 50%, 70%);
padding: 5px;
border-bottom: 1px solid #ddd;
background: hsl(0, 0%, 95%);
cursor: row-resize;
}
/*#errorDiv:empty {
padding: 0px !important;
}*/
/** DEMO CHANGES **/
#legend {
display: none;
}
.macroViz macroVizNode.collapsed > label {
display: none;
}