mirror of
https://github.com/atisawd/boxicons.git
synced 2024-11-13 19:04:52 +01:00
ecf8e4c8f8
- added new dependencies to support building custom element - added webpack configuration - added source file for box-icon element - create two new css files with content from css/boxicon.css for animation and transformations
32 lines
655 B
CSS
32 lines
655 B
CSS
.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)';
|
|
}
|
|
|
|
|