67 lines
946 B
CSS
Raw Permalink Normal View History

2024-01-31 01:06:26 +01:00
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%;
2024-01-31 01:06:26 +01:00
}
2024-02-05 13:06:05 +01:00
.graph-container-hidden {
background: rgba(0, 0, 0, 0.25);
}
2024-01-31 01:06:26 +01:00
.banner {
2024-02-16 23:06:24 +01:00
background-color: #30fc66;
color: #fff;
padding: 5px;
2024-01-31 01:06:26 +01:00
position: fixed;
z-index: 300;
2024-01-31 01:06:26 +01:00
top: 0;
width: 100%;
}
.content {
margin-top: 100px;
padding: 0px;
}
2024-02-21 01:17:15 +01:00
.item_checkboxes {
object-fit: cover;
display: flex;
flex-wrap: wrap;
overflow-y: scroll;
max-height: 50cqh;
}
2024-02-21 01:17:15 +01:00
.item_checkboxes div {
margin-bottom: 10px;
width: calc(25% - 10px);
display: flex;
align-items: center;
}
#checkbox-container2 {
max-height: 50%;
overflow-y: auto;
}