-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (101 loc) · 1.6 KB
/
style.css
File metadata and controls
118 lines (101 loc) · 1.6 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
display: flex;
flex-direction: row;
font-family: 'Open Sans';
font-size: 14px;
height: 100vh;
margin: 0;
padding: 0;
}
p {
font-family: 'Open Sans';
font-size: 14px;
margin: 0;
}
.map {
bottom: 0;
top: 0;
width: calc(100% - 360px);
}
.questions {
background: rgba(255, 255, 255, .9);
display: flex;
flex-direction: column;
font-size: 16px;
height: 110px;
justify-content: space-between;
padding: 10px;
position: absolute;
right: 370px;
top: 10px;
width: 300px;
}
.questions__controls {
display: flex;
flex-direction: row;
margin-top: 10px;
justify-content: space-around;
}
.sidebar {
background: rgba(255, 255, 255, .5);
width: 360px;
overflow-y: scroll;
}
.layers {
padding: 10px;
}
.layers__subtitle {
margin-bottom: 4px;
margin-top: 8px;
}
.layers__set {
padding: 0;
border: 0;
margin-bottom: 8px;
}
.popup__question {
font-family: 'Open Sans';
font-size: 14px;
width: 250px;
}
.popup__title {
font-family: 'Open Sans';
font-size: 14px;
width: 250px;
}
.popup__notes {
font-family: 'Open Sans';
font-size: 14px;
width: 254px;
}
.popup__list {
font-family: 'Open Sans';
font-size: 14px;
margin: 0;
padding: 10px;
}
.mapboxgl-popup-content {
padding: 20px;
}
.legend {
display: none;
padding: 5px 15px;
}
.legend__title {
font-size: 16px;
font-weight: bolder;
}
.control__download {
background: #FFF;
border: 2px solid #ddd;
border-radius: 5px;
cursor: pointer;
position: absolute;
left: 8px;
top: 130px;
width: 29px;
z-index: 20;
}
.control__download:hover {
background:#F2F2F2;
}