golden hour
/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/assets/css
⬆️ Go Up
Upload
File/Folder
Size
Actions
_animation.scss
117 B
Del
OK
_fonts.scss
687 B
Del
OK
_mixins.scss
5.13 KB
Del
OK
_variables.scss
1.01 KB
Del
OK
activation-rtl.css
1.44 KB
Del
OK
activation.css
1.44 KB
Del
OK
activation.scss
1.21 KB
Del
OK
admin-rtl.css
274.58 KB
Del
OK
admin.css
274.53 KB
Del
OK
admin.scss
106.83 KB
Del
OK
auth-rtl.css
2.36 KB
Del
OK
auth.css
2.36 KB
Del
OK
auth.scss
2.12 KB
Del
OK
dashboard-rtl.css
4.53 KB
Del
OK
dashboard.css
4.53 KB
Del
OK
dashboard.scss
3.82 KB
Del
OK
helper-rtl.css
17.49 KB
Del
OK
helper.css
17.49 KB
Del
OK
helper.scss
16.68 KB
Del
OK
jquery-ui
-
Del
OK
kkart-layout-rtl.css
15.82 KB
Del
OK
kkart-layout.css
15.87 KB
Del
OK
kkart-layout.scss
7.35 KB
Del
OK
kkart-rtl.css
56.85 KB
Del
OK
kkart-setup-rtl.css
31.28 KB
Del
OK
kkart-setup.css
31.27 KB
Del
OK
kkart-setup.scss
24.58 KB
Del
OK
kkart-smallscreen-rtl.css
5.95 KB
Del
OK
kkart-smallscreen.css
5.94 KB
Del
OK
kkart-smallscreen.scss
2.92 KB
Del
OK
kkart.css
57.61 KB
Del
OK
kkart.scss
34.24 KB
Del
OK
marketplace-suggestions-rtl.css
20.63 KB
Del
OK
marketplace-suggestions.css
20.63 KB
Del
OK
marketplace-suggestions.scss
8.54 KB
Del
OK
menu-rtl.css
5.5 KB
Del
OK
menu.css
5.41 KB
Del
OK
menu.scss
3.6 KB
Del
OK
network-order-widget-rtl.css
2.1 KB
Del
OK
network-order-widget.css
2.1 KB
Del
OK
network-order-widget.scss
1.41 KB
Del
OK
photoswipe
-
Del
OK
prettyPhoto-rtl.css
8.51 KB
Del
OK
prettyPhoto.css
8.49 KB
Del
OK
prettyPhoto.scss
7.78 KB
Del
OK
privacy-rtl.css
1.61 KB
Del
OK
privacy.css
1.61 KB
Del
OK
privacy.scss
1.98 KB
Del
OK
reports-print-rtl.css
1.25 KB
Del
OK
reports-print.css
1.24 KB
Del
OK
reports-print.scss
1.45 KB
Del
OK
select2.css
14.7 KB
Del
OK
select2.scss
17.07 KB
Del
OK
Edit: _mixins.scss
/** * 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; } }
Save