Skip to content

Commit

Permalink
feat: landing page features
Browse files Browse the repository at this point in the history
  • Loading branch information
endoooo committed Dec 26, 2023
1 parent fed96dc commit fef1e87
Show file tree
Hide file tree
Showing 7 changed files with 356 additions and 40 deletions.
Binary file added assets/.DS_Store
Binary file not shown.
36 changes: 35 additions & 1 deletion assets/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
radial-gradient(circle at 20% 110%, #ECFCCB 360px, transparent 480px)
}

/* landing page animations */
/* landing page */

#cover-spot-1 {
animation: 8s ease-in-out 2s infinite alternate landing-cover-spot-1;
Expand Down Expand Up @@ -84,4 +84,38 @@
to {
transform: translate(-60vw, -100%);
}
}

#active-learning {
background-size: cover;
background-position: center;
background-image:
linear-gradient(0deg, rgba(236, 254, 255, 0.8), rgba(236, 254, 255, 0.8)),
url('/images/active-learning-bg.jpg');
}

#curriculum-spot-1 {
animation: 8s linear 0s infinite normal spin;
}

#curriculum-spot-2 {
animation: 10s linear 2s infinite reverse spin;
}

#curriculum-spot-3 {
animation: 8s linear 1s infinite normal spin;
}

#curriculum-spot-4 {
animation: 10s linear 3s infinite reverse spin;
}

@keyframes spin {
from {
transform: rotate(0deg);
}

to {
transform: rotate(360deg);
}
}
Loading

0 comments on commit fef1e87

Please sign in to comment.