summary refs log tree commit diff stats
path: root/landing/assets/vendor/boxicons/css/transformations.css
diff options
context:
space:
mode:
Diffstat (limited to 'landing/assets/vendor/boxicons/css/transformations.css')
-rw-r--r--landing/assets/vendor/boxicons/css/transformations.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/landing/assets/vendor/boxicons/css/transformations.css b/landing/assets/vendor/boxicons/css/transformations.css
new file mode 100644
index 0000000..27fb386
--- /dev/null
+++ b/landing/assets/vendor/boxicons/css/transformations.css
@@ -0,0 +1,30 @@
+.bx-rotate-90

+{

+    transform: rotate(90deg);

+

+    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';

+}

+.bx-rotate-180

+{

+    transform: rotate(180deg);

+

+    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';

+}

+.bx-rotate-270

+{

+    transform: rotate(270deg);

+

+    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';

+}

+.bx-flip-horizontal

+{

+    transform: scaleX(-1);

+

+    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';

+}

+.bx-flip-vertical

+{

+    transform: scaleY(-1);

+

+    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';

+}