48 lines
680 B
SCSS
48 lines
680 B
SCSS
@import url("../fonts/fonts.scss");
|
|
|
|
html,body{
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body{
|
|
width: 100%;
|
|
background-color: whitesmoke;
|
|
& > .root{
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
$pagelength : 1200px;
|
|
|
|
.maxcontent{
|
|
width: $pagelength;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.master{
|
|
max-width: $pagelength;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
|
|
.middlepanel{
|
|
width: 600px;
|
|
flex: 0 0 600px;
|
|
gap: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.rightpanel{
|
|
flex: 1;
|
|
}
|
|
.leftpanel{
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.header{
|
|
background-color: white;
|
|
} |