47 lines
660 B
SCSS
47 lines
660 B
SCSS
|
|
$header-height : 150px;
|
|
|
|
|
|
.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%;
|
|
}
|
|
main{
|
|
position: relative;
|
|
// top: -7rem;
|
|
}
|
|
footer{
|
|
flex: 0 0 100%;
|
|
}
|
|
}
|
|
|
|
.layout-content{
|
|
padding-top: 3rem;
|
|
padding-bottom: 6rem;
|
|
width: 60%;
|
|
margin: auto;
|
|
}
|
|
|
|
main{
|
|
width: 100%;
|
|
}
|
|
|
|
.main-content{
|
|
margin-top: 7rem;
|
|
}
|
|
|