MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/megamenu/css/mixin.scss
@mixin border-radius($topleft: 0, $topright: 0, $bottomright: 0, $bottomleft: 0) {
  -webkit-border-radius: $topleft $topright $bottomright $bottomleft;
     -moz-border-radius: $topleft $topright $bottomright $bottomleft;
      -ms-border-radius: $topleft $topright $bottomright $bottomleft;
       -o-border-radius: $topleft $topright $bottomright $bottomleft;
          border-radius: $topleft $topright $bottomright $bottomleft;
}

@mixin box-shadow($value) {
    -webkit-box-shadow: $value;
       -moz-box-shadow: $value;
        -ms-box-shadow: $value;
         -o-box-shadow: $value;
            box-shadow: $value;
}

@mixin background($from, $to) {
    @if $to == $from {
        background: $to;
    } @else {
        background: $to;
        background: -webkit-gradient(linear, left top, left bottom, from($from), to($to));
        background: -moz-linear-gradient(top, $from, $to);
        background: -ms-linear-gradient(top, $from, $to);
        background: -o-linear-gradient(top, $from, $to);
        background: linear-gradient(to bottom, $from, $to);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie_hex_str($from)}', endColorstr='#{ie_hex_str($to)}');
    }
}

@mixin mobile {
    @media only screen and (max-width : $responsive_breakpoint) {
        @content;
    }
}

@mixin desktop {
    @media only screen and (min-width : $responsive_breakpoint + 1) {
        @content;
    }
}