-
Notifications
You must be signed in to change notification settings - Fork 0
/
appStyle.css
83 lines (75 loc) · 1.07 KB
/
appStyle.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
html, body, #mapDiv {
position: relative;
padding:0;
margin:0;
height:100%;
width:100%;
}
body{
display: flex;
}
#mapDiv {
position: relative;
flex:70%;
}
#loadingImg{
position: absolute;
top: 50%;
left: 50%;
margin: -50px 0 0 -10px;
z-index: 10;
}
#info{
top: 0px;
right: 0px;
position: absolute;
z-index: 99;
opacity: 0.9;
background-color: darkgrey;
border-bottom-left-radius: 8px;
padding: 0px 0px 0px 10px;
font-weight: bold;
}
#graphs{
flex:20%;
}
#layersMenu{
position: absolute;
top: 3%;
left: 5%;
z-index: 10;
}
ul.items{
display: none;
}
.esriMapLayers{
height:100%;
width:100%;
}
.esriPopupWrapper{
height:200px;
width: 200px;
min-height: ;
}
.esriLegendLayerLabel{
display:none;
}
#bottomPanel {
left: 50%;
margin: 0 auto;
margin-left: -500px;
position: absolute;
bottom: 2.5em;
}
#timeInfo{
border-radius: 4px;
border: solid 2px #ccc;
background-color: #fff;
display: block;
padding: 5px;
position: relative;
text-align: center;
width: 1000px;
z-index: 99;
max-width: 100%;
}