-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (51 loc) · 963 Bytes
/
styles.css
File metadata and controls
56 lines (51 loc) · 963 Bytes
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
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
}
*, *::before, *::after {
box-sizing: border-box;
}
header {
text-align: center;
background-color: #f4f4d8;
position: fixed;
top: 0;
left: 0;
right: 0;
height: 60px; /* Adjust as needed */
z-index: 10;
}
footer {
text-align: center;
background-color: #f4f4d8;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 50px; /* Adjust as needed */
z-index: 10;
overflow-y: auto;
}
iframe {
display: block;
width: 100%;
height: calc(100vh - 110px); /* 100px = 60px header + 50px footer */
position: absolute;
top: 60px; /* Same as header height */
left: 0;
right: 0;
border: none;
overflow-y: auto;
}
#cesiumContainer, #googleMap {
height: calc(100vh - 100px);
width: 100%;
position: absolute;
top: 60px;
left: 0;
bottom: 50px;
right: 0;
overflow: hidden;
}