HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/backip-old-files/media/astroid/assets/vendor/astroid/scss/_mixins.scss
@mixin triangle ($size, $color, $direction) {
   height: 0;
   width: 0;

   $width: nth($size, 1);
   $height: nth($size, length($size));

   $foreground-color: nth($color, 1);
   $background-color: transparent !default;
   @if (length($color) == 2) {
      $background-color: nth($color, 2);
   }

   @if ($direction == up) or ($direction == down) or ($direction == right) or ($direction == left) {

      $width: $width / 2;

      @if $direction == up {
         border-left: $width solid $background-color;
         border-right: $width solid $background-color;
         border-bottom: $height solid $foreground-color;

      } @else if $direction == right {
         border-top: $width solid $background-color;
         border-bottom: $width solid $background-color;
         border-left: $height solid $foreground-color;

      } @else if $direction == down {
         border-left: $width solid $background-color;
         border-right: $width solid $background-color;
         border-top: $height solid $foreground-color;

      } @else if $direction == left {
         border-top: $width solid $background-color;
         border-bottom: $width solid $background-color;
         border-right: $height solid $foreground-color;
      }
   }

   @else if ($direction == up-right) or ($direction == up-left) {
      border-top: $height solid $foreground-color;

      @if $direction == up-right {
         border-left:  $width solid $background-color;

      } @else if $direction == up-left {
         border-right: $width solid $background-color;
      }
   }

   @else if ($direction == down-right) or ($direction == down-left) {
      border-bottom: $height solid $foreground-color;

      @if $direction == down-right {
         border-left:  $width solid $background-color;

      } @else if $direction == down-left {
         border-right: $width solid $background-color;
      }
   }

   @else if ($direction == inset-up) {
      border-width: $height $width;
      border-style: solid;
      border-color: $background-color $background-color $foreground-color;
   }

   @else if ($direction == inset-down) {
      border-width: $height $width;
      border-style: solid;
      border-color: $foreground-color $background-color $background-color;
   }

   @else if ($direction == inset-right) {
      border-width: $width $height;
      border-style: solid;
      border-color: $background-color $background-color $background-color $foreground-color;
   }

   @else if ($direction == inset-left) {
      border-width: $width $height;
      border-style: solid;
      border-color: $background-color $foreground-color $background-color $background-color;
   }
}

@mixin loading-variant ($size, $color, $speed, $border) {
   display: block;
   position: relative;
   height: $size;
   width: $size;
   color: $color;
   &:before{
      border-radius: 50%;
      border: $border solid currentColor;
      opacity: .15;
   }
   &:after{
      -webkit-animation: loader $speed linear;
      animation: loader $speed linear;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      border-radius: 50%;
      border: $border solid;
      border-color: transparent;
      border-top-color: currentColor;
      box-shadow: 0 0 0 1px transparent;
   }
   &:before, &:after{
      width: $size;
      height: $size;
      margin: -($size/2) 0 0 -($size/2);
      position: absolute;
      content: '';
      top: 50%;
      left: 50%;
   }
}