Files
seweb/client/components/dates_popup/dates_popup.css
2024-08-30 10:49:22 +02:00

64 lines
1.1 KiB
CSS

#dates-popup{
width: 100%;
height: 100%;
z-index: 52;
position: absolute;
top: 0;
box-sizing: border-box;
margin-top: 30px;
background-color: rgba(0, 0, 0, 0.2);
}
#dates-popup-container{
width: 250px;
height: fit-content;
border: 2px solid black;
margin: auto;
background-color: white;
}
#dates-popup-header{
height: 40px;
display: flex;
border-bottom: 2px solid black;
box-sizing: border-box;
}
#dates-popup-header span{
margin-top: auto;
margin-bottom: auto;
margin-left: 10px;
}
#dates-popup-header img{
width: 15px;
height: 15px;
margin-left: auto;
margin-right: 10px;
margin-top: auto;
margin-bottom: auto;
cursor: pointer;
}
#dates-popup-content{
padding-left: 10px;
padding-right: 10px;
margin-bottom: 10px;
}
.jump-container{
padding: 10px;
border-radius: 10px;
border: 2px solid gray;
box-sizing: border-box;
row-gap: 5px;
margin-top: 10px;
}
.jump-container div:not(:first-child){
margin-top: 10px;
}
.jump-button{
width: 200px;
}