50 lines
721 B
CSS
50 lines
721 B
CSS
body{
|
|
margin: 0;
|
|
}
|
|
.wrapper{
|
|
min-height: 100vh;
|
|
background: #FFFFFF;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.header {
|
|
height: 100px;
|
|
background: #FFFFFF;
|
|
color: #000000;
|
|
}
|
|
.content {
|
|
display: flex;
|
|
flex: 1;
|
|
background: #333333;
|
|
color: #000;
|
|
min-height: 0px;
|
|
max-height: 100vh;
|
|
}
|
|
.columns{
|
|
display: flex;
|
|
flex:1;
|
|
}
|
|
.main{
|
|
flex: 1;
|
|
order: 2;
|
|
background: #fff;
|
|
border: 3px solid #CCCCCC;
|
|
border-radius: 5px;
|
|
height: 400px;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
.main section {
|
|
overflow-y: scroll;
|
|
height: calc(100% - 100px);
|
|
}
|
|
.sidebar-first{
|
|
width: 25%;
|
|
background: transparent;
|
|
order: 1;
|
|
}
|
|
.sidebar-second{
|
|
width: 25%;
|
|
order: 3;
|
|
background: transparent;
|
|
} |