���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/admin.adimi/layout/bootstrap4/global_assets/scss/shared/utils/ |
/* ------------------------------------------------------------------------------ * * # Custom template mixins * * All custom mixins are prefixed with "ll-" to avoid conflicts * * ---------------------------------------------------------------------------- */ // Content // ------------------------------ // Font smoothing @mixin ll-font-smoothing() { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } // Sizing shortcut. Bootstrap deprecated it, but I find it very handy. // From now on this mixin lives here. @mixin size($width, $height: $width) { width: $width; height: $height; } // // Colors (for color system) // // For .bg-* classes @mixin ll-background-variant($color) { background-color: $color; } // For .text-* classes @mixin ll-text-color-variant($color) { color: $color; // Darken link color on hover &[href] { @include hover-focus { color: darken($color, 7.5%); } } } // For .border-* classes @mixin ll-border-color-variant($color) { border-color: $color; } // For .border-top-* classes @mixin ll-border-top-color-variant($color) { border-top-color: $color; } // For .border-bottom-* classes @mixin ll-border-bottom-color-variant($color) { border-bottom-color: $color; } // For .border-left-* classes @mixin ll-border-left-color-variant($color) { border-left-color: $color; } // For .border-right-* classes @mixin ll-border-right-color-variant($color) { border-right-color: $color; }