����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/**
* Deprecated
* Fallback for bourbon equivalent
*/
@mixin clearfix() {
*zoom: 1;
&::before,
&::after {
content: ' ';
display: table;
}
&::after {
clear: both;
}
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin border_radius($radius: 4px) {
border-radius: $radius;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin border_radius_right($radius: 4px) {
border-top-right-radius: $radius;
border-bottom-right-radius: $radius;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin border_radius_left($radius: 4px) {
border-top-left-radius: $radius;
border-bottom-left-radius: $radius;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin border_radius_bottom($radius: 4px) {
border-bottom-left-radius: $radius;
border-bottom-right-radius: $radius;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin border_radius_top($radius: 4px) {
border-top-left-radius: $radius;
border-top-right-radius: $radius;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin opacity( $opacity: 0.75 ) {
opacity: $opacity;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin box_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_in: 3px, $shadow_color: #888) {
box-shadow: $shadow_x $shadow_y $shadow_rad $shadow_in $shadow_color;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin inset_box_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_in: 3px, $shadow_color: #888) {
box-shadow: inset $shadow_x $shadow_y $shadow_rad $shadow_in $shadow_color;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin text_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_color: #fff) {
text-shadow: $shadow_x $shadow_y $shadow_rad $shadow_color;
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin vertical_gradient($from: #000, $to: #fff) {
background-color: $from;
background: -webkit-linear-gradient($from, $to);
}
/**
* Deprecated
* Vendor prefix no longer required.
*/
@mixin transition($selector: all, $animation: ease-in-out, $duration: 0.2s) {
transition: $selector $animation $duration;
}
/**
* Deprecated
* Use bourbon mixin instead `@include transform(scale(1.5));`
*/
@mixin scale($ratio: 1.5) {
-webkit-transform: scale($ratio);
transform: scale($ratio);
}
/**
* Deprecated
* Use bourbon mixin instead `@include box-sizing(border-box);`
*/
@mixin borderbox() {
box-sizing: border-box;
}
@mixin darkorlighttextshadow($a, $opacity: 0.8) {
@if lightness($a) >= 65% {
@include text_shadow(0, -1px, 0, rgba(0, 0, 0, $opacity));
}
@else {
@include text_shadow(0, 1px, 0, rgba(255, 255, 255, $opacity));
}
}
/**
* Objects
*/
@mixin menu() {
@include clearfix();
li {
display: inline-block;
}
}
@mixin mediaright() {
@include clearfix();
img {
float: right;
height: auto;
}
}
@mixin medialeft() {
@include clearfix();
img {
float: right;
height: auto;
}
}
@mixin ir() {
display: block;
text-indent: -9999px;
position: relative;
height: 1em;
width: 1em;
}
@mixin icon( $glyph: '\e001' ) {
font-family: 'Kkart';
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
margin: 0;
text-indent: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
content: $glyph;
}
@mixin icon_dashicons( $glyph: '\f333' ) {
font-family: 'Dashicons';
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
margin: 0;
text-indent: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
content: $glyph;
}
@mixin iconbefore( $glyph: '\e001' ) {
font-family: 'Kkart';
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
margin-right: 0.618em;
content: $glyph;
text-decoration: none;
}
@mixin iconbeforedashicons( $glyph: '\f333' ) {
font-family: 'Dashicons';
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
content: $glyph;
text-decoration: none;
}
@mixin iconafter( $glyph: '\e001' ) {
font-family: 'Kkart';
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
margin-left: 0.618em;
content: $glyph;
text-decoration: none;
}
@mixin loader() {
&::before {
height: 1em;
width: 1em;
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-left: -0.5em;
margin-top: -0.5em;
content: '';
animation: spin 1s ease-in-out infinite;
background: url('../images/icons/loader.svg') center center;
background-size: cover;
line-height: 1;
text-align: center;
font-size: 2em;
color: rgba(#000, 0.75);
}
}
@mixin inversebuttoncolors {
background-color: transparent !important;
color: var(--button--color-text-hover) !important;
&:hover {
background-color: var(--button--color-background) !important;
color: var(--button--color-text) !important;
text-decoration: none !important;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| jquery-ui | Folder | 0755 |
|
|
| photoswipe | Folder | 0755 |
|
|
| _animation.scss | File | 117 B | 0644 |
|
| _fonts.scss | File | 687 B | 0644 |
|
| _mixins.scss | File | 5.13 KB | 0644 |
|
| _variables.scss | File | 1.01 KB | 0644 |
|
| activation-rtl.css | File | 1.44 KB | 0644 |
|
| activation.css | File | 1.44 KB | 0644 |
|
| activation.scss | File | 1.21 KB | 0644 |
|
| admin-rtl.css | File | 274.58 KB | 0644 |
|
| admin.css | File | 274.53 KB | 0644 |
|
| admin.scss | File | 106.83 KB | 0644 |
|
| auth-rtl.css | File | 2.36 KB | 0644 |
|
| auth.css | File | 2.36 KB | 0644 |
|
| auth.scss | File | 2.12 KB | 0644 |
|
| dashboard-rtl.css | File | 4.53 KB | 0644 |
|
| dashboard.css | File | 4.53 KB | 0644 |
|
| dashboard.scss | File | 3.82 KB | 0644 |
|
| helper-rtl.css | File | 17.49 KB | 0644 |
|
| helper.css | File | 17.49 KB | 0644 |
|
| helper.scss | File | 16.68 KB | 0644 |
|
| kkart-layout-rtl.css | File | 15.82 KB | 0644 |
|
| kkart-layout.css | File | 15.87 KB | 0644 |
|
| kkart-layout.scss | File | 7.35 KB | 0644 |
|
| kkart-rtl.css | File | 56.85 KB | 0644 |
|
| kkart-setup-rtl.css | File | 31.28 KB | 0644 |
|
| kkart-setup.css | File | 31.27 KB | 0644 |
|
| kkart-setup.scss | File | 24.58 KB | 0644 |
|
| kkart-smallscreen-rtl.css | File | 5.95 KB | 0644 |
|
| kkart-smallscreen.css | File | 5.94 KB | 0644 |
|
| kkart-smallscreen.scss | File | 2.92 KB | 0644 |
|
| kkart.css | File | 57.61 KB | 0644 |
|
| kkart.scss | File | 34.24 KB | 0644 |
|
| marketplace-suggestions-rtl.css | File | 20.63 KB | 0644 |
|
| marketplace-suggestions.css | File | 20.63 KB | 0644 |
|
| marketplace-suggestions.scss | File | 8.54 KB | 0644 |
|
| menu-rtl.css | File | 5.5 KB | 0644 |
|
| menu.css | File | 5.41 KB | 0644 |
|
| menu.scss | File | 3.6 KB | 0644 |
|
| network-order-widget-rtl.css | File | 2.1 KB | 0644 |
|
| network-order-widget.css | File | 2.1 KB | 0644 |
|
| network-order-widget.scss | File | 1.41 KB | 0644 |
|
| prettyPhoto-rtl.css | File | 8.51 KB | 0644 |
|
| prettyPhoto.css | File | 8.49 KB | 0644 |
|
| prettyPhoto.scss | File | 7.78 KB | 0644 |
|
| privacy-rtl.css | File | 1.61 KB | 0644 |
|
| privacy.css | File | 1.61 KB | 0644 |
|
| privacy.scss | File | 1.98 KB | 0644 |
|
| reports-print-rtl.css | File | 1.25 KB | 0644 |
|
| reports-print.css | File | 1.24 KB | 0644 |
|
| reports-print.scss | File | 1.45 KB | 0644 |
|
| select2.css | File | 14.7 KB | 0644 |
|
| select2.scss | File | 17.07 KB | 0644 |
|