add luxe template

This commit is contained in:
2024-05-21 05:22:52 +02:00
parent 00062e5a17
commit 6563f89639
153 changed files with 27459 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);
}