drupal-quartiersdedemain/web/themes/custom/quartiers_de_demain/scss/global/_layout.scss

46 lines
823 B
SCSS

$header-height : 150px;
$header-height-pad : 110px;
$header-height-small : 70px;
$header-height-ultrasmall : 50px;
$width-menu-slidedown : 550px;
.layout-container {
position: relative;
width: 100vw;
background-color: $background-home;
font-family: $font-family-default;
font-weight: 400;
font-style: normal;
font-size: $font-medium;
top: 0%;
left: 0%;
overflow: hidden;
display: flex;
flex-flow: row wrap;
header{
flex: 0 0 100%;
}
footer{
flex: 0 0 100%;
}
main{
width: 100%;
display: grid;
grid-template-columns: repeat(12, 1fr);
}
.content_container{
display: grid;
grid-template-columns: repeat(12, 1fr);
}
}
.layout-content{
grid-column: 1 / span 12;
}