2024-01-31 01:06:26 +01:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-02-01 22:55:42 +01:00
|
|
|
/* 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;
|
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;
|
2024-02-13 19:42:26 +01:00
|
|
|
color: #fff;
|
2024-02-16 23:51:37 +01:00
|
|
|
padding: 5px;
|
2024-01-31 01:06:26 +01:00
|
|
|
position: fixed;
|
2024-02-01 22:55:42 +01:00
|
|
|
z-index: 300;
|
2024-01-31 01:06:26 +01:00
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
margin-top: 100px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2024-02-13 19:42:26 +01:00
|
|
|
|
|
|
|
#checkbox-container {
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-y: auto;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
#checkbox-container div {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
width: calc(50% - 10px);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|