2024-03-15 15:41:37 +00:00
|
|
|
#sceneNavbar {
|
|
|
|
z-index: 99999;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
2024-03-15 18:27:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#sceneSidebar {
|
|
|
|
z-index: 99999;
|
|
|
|
position: fixed;
|
|
|
|
width: 250px;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #f8f9fa;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2024-03-16 06:58:14 +00:00
|
|
|
|
|
|
|
.btn-close-sidebar {
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
background-color: #ff4081;
|
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-close-sidebar:hover {
|
|
|
|
background-color: #e03570;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-open-sidebar {
|
|
|
|
z-index: 99999;
|
|
|
|
position: fixed;
|
|
|
|
width: 250px;
|
|
|
|
background-color: #40ffbe;
|
|
|
|
color: black;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 0;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-open-sidebar:hover {
|
|
|
|
background-color: #0dffad;
|
|
|
|
}
|