mixins-base/_mixins.sass

31 lines
662 B
Sass
Raw Normal View History

2020-04-14 21:10:44 +02:00
@mixin pin()
2020-04-12 17:38:51 +02:00
position: fixed
top: 0
left: 0
right: 0
bottom: 0
2020-04-14 21:10:44 +02:00
@mixin animationRotate($speed: 1s)
@keyframes animationRotate
from
transform: rotate(0)
to
transform: rotate(360deg)
animation:
name: animationRotate
duration: $speed
iteration-count: infinite
timing-function: linear
2020-04-14 21:31:10 +02:00
@mixin animationPulse($speed: 1s, $size: 1rem, $color: black)
@keyframes animationPulse
from
box-shadow: 0 0 0 0 $color;
to
box-shadow: 0 0 0 $size transparentize($color, 1);
animation:
name: animationPulse
duration: $speed
iteration-count: infinite
timing-function: linear