Changing UX for simpler design

This commit is contained in:
2025-04-05 16:37:53 +01:00
parent 5b9119a528
commit be5c9dc3be
358 changed files with 30915 additions and 88568 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;
}