[Fix #251] Fix landing page design on mobile (and add responsive)

This commit is contained in:
Mathieu Magnin 2017-05-17 18:06:25 +02:00 committed by gregoirenovel
parent d00b5b5ac3
commit 14bfda2e26
8 changed files with 162 additions and 96 deletions

View file

@ -1,14 +1,21 @@
@import "constants";
@import "mixins";
%horizontal-list {
list-style-type: none;
margin: 0;
padding: 0;
font-size: 0px;
display: flex;
flex-wrap: wrap;
}
%horizontal-list-item {
display: inline-block;
&:last-of-type {
margin-right: 0;
}
}
%page-width-container {
@include horizontal-padding($default-padding);
max-width: $page-width + 2 * $default-padding;
margin: 0 auto;
}