mirror of
https://github.com/loviuz/wifi-probe-aggregator.git
synced 2025-02-17 20:10:44 +01:00
38 lines
596 B
SCSS
Executable File
38 lines
596 B
SCSS
Executable File
// Animation Utilities
|
|
|
|
// Grow In Animation
|
|
|
|
@keyframes growIn {
|
|
0% {
|
|
transform: scale(0.9);
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.animated--grow-in {
|
|
animation-name: growIn;
|
|
animation-duration: 200ms;
|
|
animation-timing-function: transform cubic-bezier(.18,1.25,.4,1), opacity cubic-bezier(0,1,.4,1);
|
|
}
|
|
|
|
// Fade In Animation
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.animated--fade-in {
|
|
animation-name: fadeIn;
|
|
animation-duration: 200ms;
|
|
animation-timing-function: opacity cubic-bezier(0,1,.4,1);
|
|
}
|