infopanel und bilder hinzugefügt
This commit is contained in:
@@ -378,4 +378,78 @@ position: absolute;
|
||||
|
||||
#potree_render_area {
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
|
||||
#info-button-outer {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 20px;
|
||||
transform: translateY(-50%);
|
||||
z-index: 30;
|
||||
}
|
||||
|
||||
#openInfoPanel {
|
||||
border: none;
|
||||
border-radius: 14px;
|
||||
width: auto;
|
||||
height: 48px;
|
||||
padding: 0 20px;
|
||||
font-size: 17px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
background: rgba(255,255,255,0.9);
|
||||
box-shadow: 0 5px 10px rgba(0,0,0,0.278);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
color: #1e293b;
|
||||
}
|
||||
|
||||
#openInfoPanel:hover {
|
||||
background: rgb(233,232,232);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
#info-panel {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 48%;
|
||||
right: 20px;
|
||||
transform: translateY(-50%);
|
||||
width: 210px;
|
||||
padding: 22px;
|
||||
padding-bottom: 10px;
|
||||
padding-top: 10px;
|
||||
background: rgba(255,255,255,0.9);
|
||||
backdrop-filter: blur(18px);
|
||||
border: 1px solid rgba(255,255,255,0.3);
|
||||
border-radius: 24px;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
|
||||
z-index: 20;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
#info-panel.open {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#closeInfoPanel {
|
||||
align-self: flex-start;
|
||||
padding: 5px 15px;
|
||||
}
|
||||
|
||||
#info-panel-title {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #0f172a;
|
||||
}
|
||||
|
||||
#info-panel-text {
|
||||
margin: 0;
|
||||
font-size: 13px;
|
||||
line-height: 1.6;
|
||||
color: #1e293b;
|
||||
}
|
||||
Reference in New Issue
Block a user