44 lines
624 B
SCSS
44 lines
624 B
SCSS
|
|
|
|
.layout-container {
|
|
position: relative;
|
|
width: 100vw;
|
|
background-color: $background-home;
|
|
font-family: 'Marianne';
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
margin: none;
|
|
top: 0%;
|
|
left: 0%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
|
|
header{
|
|
flex: 0 0 100%;
|
|
height: 150px;
|
|
}
|
|
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;
|
|
}
|
|
|