2023-12-13 21:07:40 +00:00
|
|
|
#Dashboard {
|
|
|
|
align-items: center;
|
2023-12-18 21:15:55 +00:00
|
|
|
background-color: #000312;
|
2023-12-13 21:07:40 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
2023-12-14 21:18:36 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
.header {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
height: 62px;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 10px 0px;
|
2023-12-14 21:18:36 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
.header-left {
|
|
|
|
width: 20%;
|
2023-12-14 21:18:36 +00:00
|
|
|
}
|
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
.header-right {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
border-bottom: 1px solid #495a6a;
|
|
|
|
border-top: 1px solid #495a6a;
|
2023-12-14 21:18:36 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-12-18 21:15:55 +00:00
|
|
|
height: calc(100vh - 83px - 179px);
|
2023-12-14 21:18:36 +00:00
|
|
|
justify-content: space-between;
|
2023-12-18 21:15:55 +00:00
|
|
|
width: 100%;
|
2023-12-14 21:18:36 +00:00
|
|
|
}
|
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
.main-left {
|
|
|
|
border-right: 1px solid #495a6a;
|
2024-01-30 17:24:07 +00:00
|
|
|
width: 33%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-middle {
|
|
|
|
border-right: 1px solid #495a6a;
|
|
|
|
width: 33%;
|
2023-12-18 21:15:55 +00:00
|
|
|
height: 100%;
|
2023-12-14 21:18:36 +00:00
|
|
|
}
|
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
.main-right {
|
2024-01-30 17:24:07 +00:00
|
|
|
width: 67%;
|
2023-12-18 21:15:55 +00:00
|
|
|
height: 100%;
|
2023-12-14 21:18:36 +00:00
|
|
|
}
|
|
|
|
|
2023-12-19 21:26:11 +00:00
|
|
|
.modal {
|
|
|
|
background-color: white;
|
|
|
|
color: red;
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
.highlights {
|
2023-12-14 21:18:36 +00:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-evenly;
|
2023-12-18 21:15:55 +00:00
|
|
|
height: 50px;
|
|
|
|
width: 60%;
|
2023-12-14 21:18:36 +00:00
|
|
|
}
|