OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
docroot
/
assets
/
plugins
/
font-awesome
/
scss
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2022 11:10:46 AM
rwxr-xr-x
📄
_bordered-pulled.scss
332 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_core.scss
419 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_fixed-width.scss
120 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_icons.scss
34.18 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
_larger.scss
375 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_list.scss
378 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_mixins.scss
906 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_path.scss
695 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_rotated-flipped.scss
672 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_spinning.scss
583 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_stacked.scss
482 bytes
08/14/2022 11:10:46 AM
rw-r--r--
📄
_variables.scss
15.23 KB
08/14/2022 11:10:46 AM
rw-r--r--
📄
font-awesome.scss
405 bytes
08/14/2022 11:10:46 AM
rw-r--r--
Editing: _mixins.scss
Close
// Mixins // -------------------------- @mixin fa-icon() { display: inline-block; font: normal normal normal 14px/1 FontAwesome; // shortening font declaration font-size: inherit; // can't have font-size inherit on line above, so need to override text-rendering: auto; // optimizelegibility throws things off #1094 -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @mixin fa-icon-rotate($degrees, $rotation) { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); -webkit-transform: rotate($degrees); -ms-transform: rotate($degrees); transform: rotate($degrees); } @mixin fa-icon-flip($horiz, $vert, $rotation) { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); -webkit-transform: scale($horiz, $vert); -ms-transform: scale($horiz, $vert); transform: scale($horiz, $vert); }