25 lines
366 B
CSS
25 lines
366 B
CSS
.sidebar {
|
|
width: 250px;
|
|
position: fixed;
|
|
top: 50px;
|
|
left: -260px;
|
|
height: 100%;
|
|
background-color: rgb(245, 245, 245);
|
|
transition: left 0.3s ease-in-out;
|
|
box-shadow: 10px 0 10px -5px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.sidebar.visible {
|
|
left: 0;
|
|
}
|
|
|
|
.sidebar-content{
|
|
margin: 20px;
|
|
}
|
|
|
|
button {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
|