rum-goggles/frontend/src/screens/Dashboard.css

73 lines
1.1 KiB
CSS
Raw Normal View History

2023-12-13 21:07:40 +00:00
#Dashboard {
align-items: center;
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%;
}
.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%;
}
.header-left {
width: 20%;
2023-12-14 21:18:36 +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;
height: calc(100vh - 83px - 179px);
2023-12-14 21:18:36 +00:00
justify-content: space-between;
width: 100%;
2023-12-14 21:18:36 +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%;
height: 100%;
2023-12-14 21:18:36 +00:00
}
.main-right {
2024-01-30 17:24:07 +00:00
width: 67%;
height: 100%;
2023-12-14 21:18:36 +00:00
}
.modal {
background-color: white;
color: red;
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
}
.highlights {
2023-12-14 21:18:36 +00:00
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
height: 50px;
width: 60%;
2023-12-14 21:18:36 +00:00
}