2025-06-22 17:23:54 +00:00
|
|
|
.renderer-container {
|
|
|
|
|
height: 1000px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
overflow: hidden;
|
2025-06-22 21:15:06 +00:00
|
|
|
background-color: var(--color-primairy);
|
2025-06-22 17:23:54 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: relative; /* Added for absolute positioning of overlay */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plane-controls-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 20px;
|
|
|
|
|
right: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-22 21:15:06 +00:00
|
|
|
.button-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-22 17:23:54 +00:00
|
|
|
.plane-orientation-buttons {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
grid-template-rows: repeat(3, 1fr);
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plane-orientation-buttons button {
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
transition: opacity 0.2s, transform 0.2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plane-orientation-buttons button:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: scale(1.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plane-orientation-buttons button.active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: scale(1.1);
|
2025-06-22 21:15:06 +00:00
|
|
|
box-shadow: 0 0 10px var(--color-tertiary);
|
2025-06-22 17:23:54 +00:00
|
|
|
}
|