91 lines
1.2 KiB
CSS
91 lines
1.2 KiB
CSS
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-rows: 80px 1fr;
|
|
grid-template-columns: 250px 1fr;
|
|
grid-template-areas:
|
|
"header header"
|
|
"sidebar main";
|
|
font-family: 'Trebuchet MS';
|
|
}
|
|
|
|
|
|
#header {
|
|
color: white;
|
|
grid-area: header;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
background: rgb(42, 119, 252);
|
|
}
|
|
|
|
|
|
.logos {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.logos img {
|
|
width: 100px;
|
|
height: auto;
|
|
}
|
|
|
|
|
|
#location {
|
|
position: absolute;
|
|
right: 0%;
|
|
top: 14vh;
|
|
width: 2.5vw;
|
|
height: auto;
|
|
margin: 0.45%;
|
|
z-index: 10;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
#sidebar {
|
|
grid-area: sidebar;
|
|
padding: 20px;
|
|
background: #eeeeee;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
|
|
#main {
|
|
grid-area: main;
|
|
position: relative;
|
|
}
|
|
|
|
|
|
#map {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#potree_render_area{
|
|
position:absolute;
|
|
top:0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
background: transparent;
|
|
}
|
|
|
|
#potree_render_area canvas {
|
|
background: transparent !important;
|
|
} |