-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (75 loc) · 1.36 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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
* {
font-family: 'Source Sans Pro', sans-serif;
}
html,
body {
min-height: 100%
}
body {
background-color: #2A2D2D;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #FDF1E7;
margin: none;
}
svg {
background-color: #2a7171;
box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
border-radius: 5px;
padding: 10px;
border-radius: 5px;
}
#canvas {
min-height: 600px;
min-width: 750px;
}
.county:hover {
fill: black
}
g {
color: #FDF1E7
}
#tooltip {
visibility: hidden;
height: auto;
width: auto;
margin-top: 2px;
color: #FDF1E7;
font-size: 24px;
margin-bottom: 5px;
}
#legend {
color: rgb(56, 58, 74);
font-size: 18px;
text-align: center;
min-height: 150px;
max-width: 180px;
margin-top: 40px;
margin-bottom: 40px;
}
#title {
font-size: 28px;
color: #FDF1E7;
text-transform: uppercase;
margin-top: 10px;
margin-bottom: 30px;
}
#description a {
text-decoration: none;
color: #FDF1E7;
text-align: center;
}
#container {
display: flex;
align-items: center;
width: 100%;
}
#rightSide {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 50px;
}