31 lines
510 B
CSS
31 lines
510 B
CSS
.menu{
|
|
width: 300px;
|
|
height: fit-content;
|
|
background-color: white;
|
|
position: absolute;
|
|
z-index: 51;
|
|
border: 2px solid black;
|
|
}
|
|
|
|
.menu-title-container{
|
|
display: flex;
|
|
width: 100%;
|
|
height: 20px;
|
|
}
|
|
|
|
.menu-title-container span{
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.menu-title-container img{
|
|
margin-left: auto;
|
|
margin-right: 2px;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
height: 15px;
|
|
width: 15px;
|
|
cursor: pointer;
|
|
}
|