-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (84 loc) · 1.53 KB
/
style.css
File metadata and controls
100 lines (84 loc) · 1.53 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
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
h1, h2, h3, h4, h5, h6 {
color: black;
}
html {
scroll-behavior: smooth;
}
path {
stroke: black;
stroke-width: 0.5px;
fill: black;
}
.state {
stroke-width: 1;
/* stroke: #777777; */
}
.state:hover {
fill: lightblue;
cursor: pointer;
}
.button {
background-color: white;
color: black;
border: 1px solid #e7e7e7;
border-radius: 5px;
padding: 12px 30px;
text-align: center;
display: inline-block;
font-size: 15px;
margin: 4px 2px;
transition-duration: 0.2s;
cursor: pointer;
}
.button:hover {
background-color: gray;
color: white;
}
body {
font-family: Arial, sans-serif;
padding: 10px;
}
p{
color: rgba(41, 41, 41, 1);
font-size: 20px;
letter-spacing: -0.003em;
font-family: charter, Georgia, Cambria, "Times New Roman", Times, serif;
font-weight: 400;
line-height: 32px;
}
h4{
font-weight: 600;
}
h5{
font-weight: 400;
}
div.tooltip {
position: absolute;
text-align: left;
width: 120px;
min-height: 30px;
padding: 8px 12px;
font: 12px sans-serif;
background:white;
border: 0px;
border-radius: 5px;
pointer-events: none;
}
text.label{
font-size: 12px;
width: 200px;
}
.legend {
float: left;
}
.axis text {
font: 12px sans-serif;
}
.axis line, .axis path {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
#two_scatterplots{
position: absolute;
}