paulnicoue/assets/styles/_animations.scss

46 lines
719 B
SCSS
Raw Normal View History

2023-01-11 15:16:55 +01:00
// --------------------------------------------------
// ANIMATIONS
// --------------------------------------------------
2023-02-02 17:31:30 +01:00
@keyframes expand-outline-2px {
0% {
outline-offset: 0;
}
100% {
outline-offset: 2px;
}
}
@keyframes expand-outline-4px {
2023-01-10 10:28:09 +01:00
0% {
outline-offset: 0;
}
100% {
outline-offset: 4px;
}
}
2023-01-20 18:08:51 +01:00
@keyframes expand-height {
0% {
height: 0;
}
100% {
height: calc(100% - var(--regular-icon-size));
}
}
2023-01-27 16:12:44 +01:00
@keyframes rotate-360 {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
// AOS customization
[data-aos='fade-up'] {
transform: translate3d(0, 5rem, 0);
}