-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNECSCmap.css
89 lines (81 loc) · 2.06 KB
/
NECSCmap.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
/* map div */
html, body {
height: 100%;
width: 100%
margin-left: 0px;
}
/*parent = body*/
#panel {
float: left;
width: 25%;
height: 98%;
background: rgba(255,255,255,1);
margin-right: 5px;
}
/*parent = #panel*/
.necsc-logo {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
#text {
width: 100%;
font: 14px/16px proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
text-rendering: optimizeLegibility;
color: #333;
padding: 1px 5px 1px 5px;
background: #e5eedd;
border-radius: 5px;
margin-top: 5px;
box-shadow: 0 0 5px;
}
/* filter box which uses query extension of L.esri.featureLayer */
#query {
width: 100%;
margin-top: 5px;
font: 14px/16px proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
color: #333;
text-rendering: optimizeLegibility;
padding: 5px 5px 5px 5px;
background: #d3e3f8;
border-radius: 5px;
box-shadow: 0 0 5px;
}
#query select {
font: 13px/16px proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif
}
#Science_Themes {
width: 100%;
}
/*parent = body*/
#map-wrapper {
float: right;
width: 73%;
height: 98%;
margin: 0 5px 0 5px;
padding: 0;
box-shadow: 0 0 5px;
border-radius: 5px;
}
/*parent = map-wrapper*/
#map {
width: 100%;
height: 100%;
}
/* information div referenced by leflet */
.info {
padding: 6px 8px;
font: 14px/16px proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
color: #333;
text-rendering: optimizeLegibility;
background: white;
background: rgba(255,255,255,1);
box-shadow: 0 0 5px;
border-radius: 5px;
width: 300px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}