mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
15 lines
444 B
SCSS
15 lines
444 B
SCSS
$timing-function-deceleration: cubic-bezier(0, 0, .2, 1) !default;
|
|
$timing-function-standard: cubic-bezier(.4, 0, .2, 1) !default;
|
|
$timing-function-acceleration: cubic-bezier(.4, 0, 1, 1) !default;
|
|
$timing-function-sharp: cubic-bezier(.4, 0, .6, 1) !default;
|
|
|
|
@keyframes pulse {
|
|
0% {opacity: 1;}
|
|
50% {opacity: .7;}
|
|
100% {opacity: 1;}
|
|
}
|
|
|
|
@mixin pulse-animation {
|
|
animation: pulse 1s infinite;
|
|
animation-timing-function: ease-in-out;
|
|
}
|