-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglathida.css
115 lines (100 loc) · 1.59 KB
/
glathida.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
html {
margin: 0;
padding:0;
left:0;
top:0;
}
body {
margin: 0;
padding:0;
/* position: absolute; */
left:0;
top:0;
}
/* body {
margin:0;
height:100vh;
width:100vw;
} */
.marked {
fill: #1dff00;
opacity: 1.0;
}
.axis path,
.axis line {
fill: none;
stroke: rgba(0, 0, 0, 0.1);
shape-rendering: crispEdges;
stroke-width: 2;
}
.axis text{
/* fill: #f26602; */
font-size: 14;
}
.label {
/* fill: #7442f4; */
font-size: 16;
}
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgb(51, 102, 153, 0.7);
color: #fff;
border-radius: 2px;
pointer-events: none;
opacity: 0.5;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgb(51, 102, 153, 0.5);
position: absolute;
pointer-events: none;
}
/* Northward tooltips */
.d3-tip.n:after {
content: "\25BC";
margin: -1px 0 0 0;
top: 100%;
left: 0;
text-align: center;
}
/* Eastward tooltips */
.d3-tip.e:after {
content: "\25C0";
margin: -4px 0 0 0;
top: 50%;
left: -8px;
}
/* Southward tooltips */
.d3-tip.s:after {
content: "\25B2";
margin: 0 0 1px 0;
top: -8px;
left: 0;
text-align: center;
}
/* Westward tooltips */
.d3-tip.w:after {
content: "\25B6";
margin: -4px 0 0 -1px;
top: 50%;
left: 100%;
}
.ui.grid.container {
/* height: 100vh; */
width: 95% !important;
/* position: absolute; */
}
.scatter-dash > .grid {
margin: 0 !important;
max-height: 95%;
}
* {
box-sizing: border-box !important;
}