67 lines
946 B
CSS
67 lines
946 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
/* font-family: 'overpass'; */
|
|
}
|
|
|
|
.popup {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.popup-content {
|
|
background: #3d3d3d;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
max-height: 70%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.graph-container-hidden {
|
|
background: rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.banner {
|
|
background-color: #30fc66;
|
|
color: #fff;
|
|
padding: 5px;
|
|
position: fixed;
|
|
z-index: 300;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.content {
|
|
margin-top: 100px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.item_checkboxes {
|
|
object-fit: cover;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
overflow-y: scroll;
|
|
max-height: 50cqh;
|
|
}
|
|
|
|
.item_checkboxes div {
|
|
margin-bottom: 10px;
|
|
width: calc(25% - 10px);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#checkbox-container2 {
|
|
max-height: 50%;
|
|
overflow-y: auto;
|
|
}
|
|
|