[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,12 @@
@define-mixin image-2x $image, $width, $height
{
@media (min--moz-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6/2),
(-webkit-min-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx)
{
background-image: url($image);
background-size: $width $height;
}
}