-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (83 loc) · 1.67 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
88
89
90
91
92
93
div.tooltip {
position: absolute;
text-align: center;
max-width: 500px;
display: flex;
flex-direction: column;
padding: 2px;
background: white;
border: 3px solid navy;
border-radius: 5px;
pointer-events: none;
text-align: left;
}
.tooltipP {
margin-bottom: 0;
}
#controls{
position: fixed;
top: 0;
background-color: white;
border: 3px solid navy;
z-index: 1;
}
#iconKey{
padding: 2%;
background-color: whitesmoke;
}
#iconKey ul {
padding-left: 0px;
}
#iconKey ul li {
list-style-type:none;
}
#iconKey hr {
margin: 4px;
}
input[type=checkbox] + label {
display: none;
}
input[type=checkbox]:checked + label {
display: block;
}
#overview{
max-width: 100em;
margin: 10px auto;
border: beige;
border-style: dotted;
padding: 1em;
background-color: wheat;
}
.errorNote{
color: darkred;
padding: 1%;
background-color: peachpuff;
border-radius: 12px;
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.highlightHTML{
color: steelblue;
padding: 3px;
}
/* setting this with a psusdo hover class for now, but it might be better to use a ".highlightHTML .active" rule and we just add and subtract the active class with d3. */
.highlightHTML:hover {
color: white;
background-color: brown;
border-radius: 5px;
}
.highlightSegment {
color: slateblue;
padding: 3px;
}
.highlightSegment:hover{
color: white;
background-color: chocolate;
border-radius: 10px;
}
/* Not sure if I need a different set of rules for svg elements since they use fill instead of color */
.highlightSVG {
fill: steelblue;
padding: 3px;
}