-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_Project.css
53 lines (46 loc) · 988 Bytes
/
style_Project.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
/* format container to fill window*/
html, body, .container{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
}
/* format viewDiv to grow dynamically */
#viewDiv{
flex-grow: 1;
overflow: auto;
min-height: 2em;
}
/* format header colors, font, and static position */
#header {
flex-shrink: 0;
background-color: #990000;
color: white;
text-align: center;
font-family:Segoe UI;
}
/* format footer static position */
#footer {
flex-shrink: 0;
border-top: 1px solid black;
}
/* format footer text size, font, placement */
#footer p{
font-size: 12px;
text-align: center;
font-family: Segoe UI;
}
/* format link */
#footer a{
font-size: 12px;
color: #990000;
}
/* format pop-up...not sure if this worked */
.esri-popup__header {
position: relative;
font-size: 12px;
align-items: flex-start;
justify-content: space-between;
flex: 0 0 auto;
}