Initial Commit

This commit is contained in:
Antoine BOUBE ASTUGUE
2020-03-06 13:53:48 +01:00
commit da781f0bbe
132 changed files with 34810 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// Opacity
@mixin opacity($opacity) {
opacity: $opacity;
// IE8 filter
$opacity-ie: ($opacity * 100);
filter: #{alpha(opacity=$opacity-ie)};
}
@mixin black-filter($opacity){
top: 0;
left: 0;
height: 100%;
width: 100%;
position: absolute;
background-color: rgba(17,17,17,$opacity);
display: block;
content: "";
z-index: 1;
}