baz_april/scss/_baz-layout.scss

62 lines
1001 B
SCSS
Raw Normal View History

2020-02-18 13:23:20 +01:00
/* layout */
html, body {
margin: 0;
padding: 0;
height: 100%;
2020-02-18 23:50:44 +01:00
background: $couleurBackground;
2020-02-18 13:23:20 +01:00
}
.page--container {
margin: 0 auto;
padding: 0 1em;
width: 100%;
2020-02-18 23:50:44 +01:00
@include media($bp-large-up) {
width: $screen-large;
2020-02-18 13:23:20 +01:00
padding: 0;
}
}
.page__wrapper {
@include flex();
-webkit-flex-direction: column;
flex-direction: column;
justify-content: space-between;
min-height: 100%;
// hauteur de la boussole
padding-top: $spacer;
}
.page__content {
margin-bottom: $spacer*4;
}
@include media($bp-medium-up) {
.page__content {
@include flex();
// permet de caler le footer en bas de page
flex-grow: 1;
flex-direction: row;
justify-content: space-between;
margin-bottom: $spacer*4;
}
.contentMain {
// deux tiers
width: 60%;
2020-02-18 23:50:44 +01:00
margin-right: $spacer*2;
.composition_dossier & {
width:100%;
margin:0;
}
2020-02-18 13:23:20 +01:00
}
.contentAside {
// un tiers
width: 40%;
2020-02-18 23:50:44 +01:00
margin-left: $spacer*2;
2020-02-18 13:23:20 +01:00
}
}
2020-02-18 23:50:44 +01:00