This commit is contained in:
Jeremy Thomas
2024-03-21 16:11:54 +00:00
parent 16f1b76881
commit 69877a652c
3261 changed files with 255369 additions and 108913 deletions

24
docs/_sass/utils.scss Normal file
View File

@@ -0,0 +1,24 @@
$header-bp: 1000px;
%bd-animated {
animation-duration: var(--animation-duration);
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0, 0, 0, 1);
transform-origin: center;
transform-style: preserve-3d;
}
%anim-3d {
animation-duration: 500ms;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0, 0, 0, 1);
backface-visibility: hidden;
}
@mixin bd-animate($name) {
@extend %bd-animated;
&.is-animated {
animation-name: $name;
}
}