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

57 lines
906 B
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;
width: 30%;
height: 100%;
2023-12-14 21:18:36 +00:00
}
.main-right {
width: 70%;
height: 100%;
2023-12-14 21:18:36 +00:00
}
.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
}