37 lines
432 B
CSS
37 lines
432 B
CSS
#overview-head
|
|
{
|
|
padding-bottom: 12px;
|
|
margin-bottom: 12px;
|
|
border-bottom: 1px solid;
|
|
}
|
|
|
|
#overview-hint
|
|
{
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#overview-hint.overview-hint-hidden
|
|
{
|
|
display: none;
|
|
}
|
|
|
|
#overview-body
|
|
{
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
#overview-body #overview-pane-left
|
|
{
|
|
flex-grow: 0;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
#overview-body #overview-pane-right
|
|
{
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
}
|