| Server IP : 14.225.204.176 / Your IP : 216.73.216.169 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/harmoniegolfpark.com/assets/sass/ |
Upload File : |
// MIXINS
// ==========================================================================
// Utilities
@import "mixins/breakpoints";
@import "mixins/visibility";
@import "mixins/text-truncate";
@import "mixins/opacity";
// Components
@import "mixins/animates";
@import "mixins/fonts";
@import "mixins/bgs";
@import "mixins/borders";
@import "mixins/buttons";
@import "mixins/images";
@import "mixins/fixed-ratiobox";
@import "mixins/triangle";
// Layout
@import "mixins/clearfix";
@import "mixins/layering";
// Others
// Apply ‘attention’ styles in one go.
@mixin attention($self: false) {
@if($self != false) {
&,
&:hover,
&:active,
&:focus {
@content;
}
}
@else {
&:hover,
&:active,
&:focus {
@content;
}
}
}
@mixin margin($location: bottom, $rem: 0.8rem) {
margin-#{$location}: $base-spacing-unit;
margin-#{$location}: ($base-spacing-unit / $base-font-size) * $rem;
}
@mixin lang-normal-case() {
@at-root {
html[lang='zh-hans'] &,
html[lang='zh-hant'] &,
html[lang="ja"] & {
text-transform: none;
}
}
}
@mixin okr-slick-dots( $higlight-color: $color-gray ) {
& .slick-dots li {
width: 10px;
height: 10px;
}
& .slick-dots li button {
background: lighten( $color-gray-light, 25 );
width: 15px;
height: 15px;
margin: 0;
border-radius: 50%;
}
& .slick-dots li button:before {
display: none;
}
& .slick-dots li.slick-active button {
background: $higlight-color;
}
}