mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
56 lines
866 B
CSS
56 lines
866 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
@keyframes fade-in {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-out {
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes slide-from-right {
|
|
from {
|
|
transform: translateX(30px);
|
|
}
|
|
}
|
|
|
|
@keyframes slide-to-left {
|
|
to {
|
|
transform: translateX(-30px);
|
|
}
|
|
}
|
|
|
|
::view-transition-old(root) {
|
|
animation: 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out,
|
|
300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-to-left;
|
|
}
|
|
|
|
::view-transition-new(root) {
|
|
animation: 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in,
|
|
300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-from-right;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
::view-transition-new(count) {
|
|
animation: rotate 2s linear;
|
|
}
|
|
|
|
::view-transition-old(count) {
|
|
animation: rotate 0.5s linear;
|
|
}
|