Files
r2c/user/themes/r2c/scss/template/_section.scss
T
2018-07-11 18:17:01 +02:00

38 lines
694 B
SCSS

#page{
height: 100%;
.navbar{
width: 100%;
height: 50px;
}
#start{
width: 100%;
height: calc(100% - 50px);
display: flex;
flex-wrap: wrap;
.blocs{
width: calc(100%/3);
height: calc(100vh/2 - 25px);
overflow-y: auto;
&:nth-child(1){
background: red;
}
&:nth-child(2){
background: pink;
}
&:nth-child(3){
background: brown;
}
&:nth-child(4){
background: blue;
}
&:nth-child(5){
background: green;
}
&:nth-child(6){
background: yellow;
}
}
}
}