Version initiale du site

This commit is contained in:
faquin
2017-12-06 10:49:34 +01:00
commit 0422c1db58
261 changed files with 29690 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// Opacity
@mixin opacity($opacity) {
opacity: $opacity;
// IE8 filter
$opacity-ie: ($opacity * 100);
filter: alpha(opacity=$opacity-ie);
}