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

49 lines
942 B
SCSS
Raw Normal View History

2024-02-26 14:44:32 +01:00
2024-03-20 14:00:00 +01:00
$header-height : 125px;
2024-03-02 16:49:14 +01:00
$header-height-pad : 110px;
$header-height-small : 70px;
2024-03-04 11:23:46 +01:00
$header-height-ultrasmall : 50px;
2024-02-26 14:44:32 +01:00
$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;
2024-02-29 10:41:42 +01:00
font-size: $font-medium;
2024-02-26 14:44:32 +01:00
top: 0%;
left: 0%;
overflow: hidden;
display: flex;
flex-flow: row wrap;
header{
flex: 0 0 100%;
}
2024-03-01 10:27:22 +01:00
2024-02-26 14:44:32 +01:00
footer{
flex: 0 0 100%;
}
2024-02-27 22:14:29 +01:00
main{
width: 100%;
2024-03-01 09:21:12 +01:00
display: grid;
grid-template-columns: repeat(12, 1fr);
2024-02-27 22:14:29 +01:00
}
.content_container{
display: grid;
grid-template-columns: repeat(12, 1fr);
}
2024-02-26 14:44:32 +01:00
}
2024-03-01 09:21:12 +01:00
.layout-content{
2024-03-01 10:27:22 +01:00
grid-column: 1 / span 12;
2024-05-07 12:15:25 +02:00
padding-top: $header-height;
@media(max-width: 500px){
padding-top: $header-height-ultrasmall;
}
2024-03-01 09:21:12 +01:00
}
2024-02-26 14:44:32 +01:00