35 lines
470 B
SCSS
35 lines
470 B
SCSS
|
|
|
|
.layout-container {
|
|
font-family: 'Marianne';
|
|
margin: none;
|
|
top: 0%;
|
|
left: 0%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
|
|
header{
|
|
flex: 0 0 100%;
|
|
}
|
|
main{
|
|
position: relative;
|
|
// top: -7rem;
|
|
}
|
|
footer{
|
|
flex: 0 0 100%;
|
|
}
|
|
}
|
|
.layout-content{
|
|
padding-top: 7rem;
|
|
padding-bottom: 6rem;
|
|
}
|
|
|
|
main{
|
|
width: 100%;
|
|
}
|
|
.main-content{
|
|
margin-top: 7rem;
|
|
}
|