quackscape/assets/css/scene.css

51 lines
733 B
CSS
Raw Normal View History

#sceneNavbar {
z-index: 99999;
position: fixed;
width: 100%;
}
#sceneSidebar {
z-index: 99999;
position: fixed;
width: 250px;
height: 100%;
background-color: #f8f9fa;
opacity: 0.7;
}
.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;
}