mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 06:06:56 +08:00
24 lines
652 B
SCSS
24 lines
652 B
SCSS
// scss-lint:disable ImportantRule VendorPrefix
|
|
|
|
$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;
|
|
}
|
|
|
|
.notransition {
|
|
-moz-transition: none !important;
|
|
-o-transition: none !important;
|
|
-webkit-transition: none !important;
|
|
transition: none !important;
|
|
}
|