Skip to content
Snippets Groups Projects
Select Git revision
  • b3e532a6e0781d286fde6102bf7849a0e2dc8988
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

candidate-card.mustache

Blame
  • mixins.scss 1.82 KiB
    /*MIXINS*/
    @mixin transition($transition...) {
        -moz-transition: $transition;
        -o-transition: $transition;
        -webkit-transition: $transition;
        transition: $transition;
    }
    
    @mixin transition-property($property...) {
        -moz-transition-property: $property;
        -o-transition-property: $property;
        -webkit-transition-property: $property;
        transition-property: $property;
    }
    
    @mixin transition-duration($duration...) {
        -moz-transition-property: $duration;
        -o-transition-property: $duration;
        -webkit-transition-property: $duration;
        transition-property: $duration;
    }
    
    @mixin transition-timing-function($timing...) {
        -moz-transition-timing-function: $timing;
        -o-transition-timing-function: $timing;
        -webkit-transition-timing-function: $timing;
        transition-timing-function: $timing;
    }
    
    @mixin transition-delay($delay...) {
        -moz-transition-delay: $delay;
        -o-transition-delay: $delay;
        -webkit-transition-delay: $delay;
        transition-delay: $delay;
    }
    
    @mixin background-size($size) {
        -webkit-background-size: $size;
        -moz-background-size: $size;
        -o-background-size: $size;
        background-size: $size;
    }
    
    @mixin gradient($direction, $startcolor, $endcolor) {
        background-image: linear-gradient(to $direction, $startcolor 0%, $endcolor 100%);
        background-image: -o-linear-gradient($direction, $startcolor 0%, $endcolor 100%);
        background-image: -moz-linear-gradient($direction, $startcolor 0%, $endcolor 100%);
        background-image: -webkit-linear-gradient($direction, $startcolor 0%, $endcolor 100%);
        background-image: -ms-linear-gradient($direction, $startcolor 0%, $endcolor 100%);
    }
    
    // Render fontawesome icons
    @mixin render-icon {
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        font-family: "Font Awesome 5 Pro";
    }