-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (57 loc) · 915 Bytes
/
styles.css
File metadata and controls
68 lines (57 loc) · 915 Bytes
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
body {
background-color: #dadada;
margin: auto;
text-align: center;
}
select {
padding-left: 1rem;
padding-right: 1rem;
margin: 0.5rem;
}
svg{
border: 2px solid black;
background-color: rgb(167, 165, 165);
}
.selected {
fill: lightgray;
stroke: white;
}
.boundary {
fill: #d3d3d3;
stroke: black;
stroke-width: 1px;
}
.hidden {
display: none;
}
div.tooltip {
color: #222;
background: #fff;
border-radius: 3px;
box-shadow: 0px 0px 2px 0px #a6a6a6;
padding: .2em;
text-shadow: #f5f5f5 0 1px 0;
opacity: 0.9;
position: absolute;
}
.idk{
color: #f0f0f0;
}
.legend{
padding: 5px;
font: 10px sans-serif;
background: yellow;
box-shadow: 2px 2px 1px #888;
}
.graphDiv{
display: inline-block;
}
.graph{
background-color: white;
border: 1px solid black;
margin: 2rem 2rem 2rem 0rem;
padding: 1rem 2.5rem 1rem 0rem;
}
#map{
position: fixed;
}