68 lines
886 B
CSS
68 lines
886 B
CSS
|
.sidebar {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
width: 16rem;
|
||
|
padding: 2rem 1rem;
|
||
|
background-color: #f8f9fa;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
margin-left: 18rem;
|
||
|
margin-right: 2rem;
|
||
|
padding: 2rem 1rem;
|
||
|
}
|
||
|
|
||
|
.summary {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.summary-wrapper {
|
||
|
max-width: 650px;
|
||
|
width: 100%;
|
||
|
margin: 0 auto 2rem;
|
||
|
}
|
||
|
|
||
|
.graphs {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.graphs-left {
|
||
|
width: 40%;
|
||
|
}
|
||
|
|
||
|
.graphs-right {
|
||
|
width: 55%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.engine_vol_histogram {
|
||
|
height: 350px;
|
||
|
}
|
||
|
|
||
|
.price_boxplot {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.wordcloud {
|
||
|
width: 100%;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.cell-table {
|
||
|
font-family: system-ui;
|
||
|
}
|
||
|
|
||
|
.column-header-name {
|
||
|
text-transform: capitalize;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
color: #a3a3a3 !important;
|
||
|
}
|