just something to test

This commit is contained in:
Stephen
2019-11-04 21:03:48 -08:00
parent 931b897f65
commit 273510547c
114 changed files with 24958 additions and 59 deletions

View File

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