-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (110 loc) · 1.85 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
html, body {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
font-family: Proxima Nova;
color: #005580;
font-size: 16px;
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.map-wrapper {
position: relative;
height: 100%;
width: 100%;
}
#map {
position: absolute;
height: 100%;
width: 75%;
}
/*
* We position the sidebar to the right by using float and setting the width
* to 100% - the width of the map, in this case 100% - 75% = 25%
*/
.sidebar {
background: rgba(0, 85, 128, .2);
float: right;
height: 100vh;
padding: 10px;
width: 25%;
}
.sidebar>div {
margin: 0px 15px 15px 15px;
flex-direction: row;
}
.sidebar-footer {
margin-top: 75px;
display: block;
}
.sidebar-footer a {
text-decoration: none;
color: #005580;
}
.sidebar-feature-content {
color: red;
}
.sidebar-feature-content h3{
margin: 0px;
}
#title {
color: #005580;
font-size: 2.5em;
font-weight: 400;
line-height: 1em;
text-decoration-line: none;
letter-spacing: -1px;
text-transform: uppercase;
}
#explainer {
fonts-size: 1.5em;
}
#filters>ul {
list-style-type: none;
padding-left: 0px;
}
.buttons {
/* position: inline-block; */
margin-top: 10px;
float: left;
width: 100%;
}
button {
display: flex;
color: #005580;
background-color: white;
border-radius: 5px;
margin-top: 5px;
border: 1px solid #005580;
width: 100px;
display: table-cell;
vertical-align: middle;
}
.street-button:hover {
background-color: #E8D358;
color: white;
}
.park-button:hover {
background-color: #70C196;
color: white;
}
.reset-button:hover {
background-color: #005580;
color: white;
}
/* .checkboxes {
position: relative;
display: inline-block;
cursor: pointer;
padding-left: 100px;
height: 40px;
line-height: 40px;
margin: 5px;
font-size: 30px;
user-select: none;
} */