demarches-normaliennes/app/assets/stylesheets/new_design/layouts.scss

55 lines
1 KiB
SCSS
Raw Normal View History

2017-06-20 11:13:24 +02:00
@import "colors";
@import "common";
2017-06-20 11:13:24 +02:00
@import "constants";
.two-columns {
background-color: #FFFFFF;
2017-06-20 11:13:24 +02:00
@media (min-width: $two-columns-breakpoint) {
background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 50%, $light-grey 50%, $light-grey 100%);
}
2017-06-20 11:13:24 +02:00
.columns-container {
@extend .container;
2017-06-20 11:13:24 +02:00
display: flex;
flex-direction: column;
justify-content: center;
@media (min-width: $two-columns-breakpoint) {
flex-direction: row;
align-items: stretch;
justify-content: space-between;
}
2017-06-20 11:13:24 +02:00
}
.column {
width: 100%;
max-width: 500px;
margin: 0 auto;
padding: ($default-padding * 2) 0 0 0;
&:last-of-type {
padding-bottom: $default-padding * 2;
}
2017-06-20 11:13:24 +02:00
@media (min-width: $two-columns-breakpoint) {
width: 45%;
margin: 0;
padding: $two-columns-padding 0 $two-columns-padding 0;
&:last-of-type {
padding-bottom: $two-columns-padding;
}
2017-06-20 11:13:24 +02:00
}
}
}
.one-column-centered {
margin: auto;
max-width: $page-width / 2;
}
.blank-tab {
text-align: center;
}