[update] Init front tasks

This commit is contained in:
Bruno SIMON
2016-08-26 15:30:26 +02:00
parent 861c9d4ee1
commit d4d852f356
16 changed files with 401 additions and 106 deletions
@@ -0,0 +1,20 @@
$breakpoint-xxsmall: 480px;
$breakpoint-xsmall: 600px;
$breakpoint-small: 840px;
$breakpoint-medium: 960px;
$breakpoint-large: 1280px;
$breakpoint-xlarge: 1440px;
$breakpoint-xxlarge: 1600px;
@define-mixin max-width $value
{
@media only screen and (max-width:$value){
@mixin-content;
}
}
@define-mixin max-height $value
{
@media only screen and (max-height:$value){
@mixin-content;
}
}