Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.16.203.175
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
dos /
vendor /
fa /
scss /
[ HOME SHELL ]
Name
Size
Permission
Action
_animated.scss
6.36
KB
-rw-r--r--
_bordered-pulled.scss
720
B
-rw-r--r--
_core.scss
701
B
-rw-r--r--
_fixed-width.scss
122
B
-rw-r--r--
_functions.scss
2.07
KB
-rw-r--r--
_icons.scss
318
B
-rw-r--r--
_list.scss
447
B
-rw-r--r--
_mixins.scss
1.88
KB
-rw-r--r--
_rotated-flipped.scss
611
B
-rw-r--r--
_screen-reader.scss
336
B
-rw-r--r--
_shims.scss
67.46
KB
-rw-r--r--
_sizing.scss
308
B
-rw-r--r--
_stacked.scss
633
B
-rw-r--r--
_variables.scss
157.57
KB
-rw-r--r--
brands.scss
839
B
-rw-r--r--
fontawesome.scss
564
B
-rw-r--r--
regular.scss
719
B
-rw-r--r--
solid.scss
711
B
-rw-r--r--
v4-shims.scss
346
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _mixins.scss
// mixins // -------------------------- // base rendering for an icon @mixin fa-icon { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: inline-block; font-style: normal; font-variant: normal; font-weight: normal; line-height: 1; } // sets relative font-sizing and alignment (in _sizing) @mixin fa-size ($font-size) { font-size: fa-divide($font-size, $fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base line-height: fa-divide(1, $font-size) * 1em; // sets the line-height of the icon back to that of it's parent vertical-align: (fa-divide(6, $font-size) - fa-divide(3, 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender } // only display content to screen readers // see: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/ // see: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/ @mixin fa-sr-only() { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } // use in conjunction with .sr-only to only display content when it's focused @mixin fa-sr-only-focusable() { &:not(:focus) { @include fa-sr-only(); } } // convenience mixins for declaring pseudo-elements by CSS variable, // including all style-specific font properties, and both the ::before // and ::after elements in the duotone case. @mixin fa-icon-solid($fa-var) { @extend %fa-icon; @extend .fa-solid; &::before { content: unquote("\"#{ $fa-var }\""); } } @mixin fa-icon-regular($fa-var) { @extend %fa-icon; @extend .fa-regular; &::before { content: unquote("\"#{ $fa-var }\""); } } @mixin fa-icon-brands($fa-var) { @extend %fa-icon; @extend .fa-brands; &::before { content: unquote("\"#{ $fa-var }\""); } }
Close