Introduced MainLayoutComponent with header and navbar for consistent app layout. Added HeaderComponent, NavbarComponent, ScheduleComponent, and MainComponent. Updated routing to use MainLayout for main and schedule pages. Renamed home-component to home and main-page to main, removing obsolete main-page files.
16 lines
398 B
CSS
16 lines
398 B
CSS
@keyframes fadeUp {
|
|
0% { opacity: 0; transform: translateY(20px); }
|
|
100% { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.animate-fadeUp { animation: fadeUp 1s ease forwards; }
|
|
.animate-fadeUp-delay { animation: fadeUp 1s 0.2s ease forwards; opacity: 0; }
|
|
|
|
|
|
@keyframes fade {
|
|
0% { opacity: 0;}
|
|
100% { opacity: 1;}
|
|
}
|
|
|
|
.animate-fade-logo { animation: fade 1.5s 0.5s ease forwards; opacity: 0; }
|