| Server IP : 89.108.64.180 / Your IP : 216.73.217.92 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/rzaimka.ru/wp-content/plugins/maxbuttons/assets/scss/ |
Upload File : |
@mixin linear-gradient($start:#000,$end:#000,$stop:45%,$important: null, $background:false)
{
background: $start $important;
-pie-background: linear-gradient($start $stop, $end) $important;
background: -webkit-gradient(linear, left top, left bottom, color-stop($stop, $start),
color-stop(1, $end)) $important;
background: -moz-linear-gradient($start $stop, $end) $important;
background: -o-linear-gradient($start $stop, $end) $important;
@if $background {
background: $background, linear-gradient( $start $stop, $end) $important;
} @else {
background: linear-gradient( $start $stop, $end) $important;
}
}
@mixin user-select($value){
-webkit-user-select: $value;
-ms-user-select: $value;
user-select: $value;
}
@mixin box-shadow($left, $top, $blur, $color,$spread:null, $inset:false, $important:null) {
@if $inset {
box-shadow:inset $left $top $blur $spread $color $important;
} @else {
box-shadow: $left $top $blur $spread $color $important;
}
}
@mixin text-shadow($x: 2px, $y: 2px, $blur: 5px, $color: rgba(0,0,0,.4)) {
text-shadow: $x $y $blur $color;
}
@mixin border-radius($topleft, $topright, $bottomleft, $bottomright)
{
border-radius: $topleft $topright $bottomleft $bottomright;
}
@mixin rotate( $degrees ) {
transform: rotate(#{$degrees}deg);
}
@mixin transition($property, $duration, $ms: false) {
transition: $property $duration ease-in-out;
}
@mixin responsive-changed($classDef:'&.responsive-changed') {
// class to show that the responsive option not same as default.
#{$classDef} {
font-weight: 700;
// background: #cccccc50;
//background: linear-gradient(209deg, #0f6a7d 0%, #ebebeb 35%);
//background-repeat: no-repeat;
//border-color: #cccccc50;
border-left-width: 4px;
border-left-color: #0f6a7d;
border-left-style: solid;
}
}
@mixin bp($point)
{
@if $point == 480
{
@media (max-width: 480px) { @content; }
}
@else if $point == 640 {
@media (max-width: 640px) { @content; }
}
@else if $point == 780 {
@media (max-width: 780px) { @content; }
}
@else if $point == 800 {
@media (max-width: 800px) { @content; }
}
@else if $point == 960 {
@media (max-width: 960px) { @content; }
}
@else if $point == 1024 {
@media (max-width: 1024px) { @content; }
}
@else if $point == 1200 {
@media (max-width: 1200px) { @content; }
}
}