first commit

This commit is contained in:
2024-12-20 12:48:12 +01:00
commit d9fb74972a
217 changed files with 26712 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
@use "../01-base/colors" as *;
@mixin corner-box($percent){
clip-path: polygon(0% $percent, $percent 0%, 100% 0%, 100% $percent, 100% 100%, 0% 100%, 0% $percent);
}
@mixin bg-filter{
position: absolute;
background-color: $dark-color;
opacity: 97%;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
@mixin bg-filter--gradient{
background: linear-gradient(119deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 90%);
}