Skip to content

Commit

Permalink
added contacts animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Andcool-Systems committed Dec 14, 2024
1 parent 065fec4 commit c6d2fcd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/app/contacts/styles/page.module.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.main {
margin-left: 2rem;
margin-right: 2rem;

animation: show .5s;
}

.cards_container {
Expand All @@ -9,4 +11,18 @@
align-items: stretch;
flex-wrap: wrap;
gap: 1rem;
}

@keyframes show {
0% {
opacity: 0;
filter: blur(5px);
transform: translateY(50px) scale(.95);
}

100% {
opacity: 1;
filter: blur(0px);
transform: translateY(0px) scale(1);
}
}

0 comments on commit c6d2fcd

Please sign in to comment.