2020-05-05 16:31:18 +00:00
|
|
|
%with-transition-500 {
|
|
|
|
transition-duration: 0.15s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
}
|
2018-09-21 10:13:21 +00:00
|
|
|
%blink-in-fade-out {
|
|
|
|
transition-property: opacity;
|
|
|
|
transition-duration: 0.1s;
|
|
|
|
transition-timing-function: linear;
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
%blink-in-fade-out-active {
|
|
|
|
transition-duration: 0;
|
|
|
|
transition-duration: unset;
|
2019-05-17 11:33:12 +00:00
|
|
|
transition-delay: 0;
|
|
|
|
transition-delay: unset;
|
2018-09-21 10:13:21 +00:00
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
2021-01-26 17:40:33 +00:00
|
|
|
%transition-pushover {
|
|
|
|
transition-timing-function: cubic-bezier(0.1, 0.1, 0.25, 0.9);
|
|
|
|
transition-duration: 0.1s;
|
|
|
|
}
|
2021-05-07 11:23:29 +00:00
|
|
|
%animation-pushover {
|
|
|
|
animation-timing-function: cubic-bezier(0.1, 0.1, 0.25, 0.9);
|
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
|
|
|
%animation-remove-from-flow {
|
|
|
|
animation-name: remove-from-flow;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
@keyframes remove-from-flow {
|
|
|
|
100% {
|
|
|
|
visibility: hidden;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
}
|
|
|
|
}
|