Skip to content

Commit

Permalink
Merge pull request #50 from TartejBrothers/Updates
Browse files Browse the repository at this point in the history
Updated: Animation
  • Loading branch information
TartejBrothers committed Jun 1, 2024
2 parents 75a5c85 + 0677846 commit d68ad88
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/components/styles/expertisecomponent.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,27 @@
color: #a29e9a;
line-height: 1.5;
}

@keyframes expertisecontenthide {
0% {
max-height: 1000px;
}
100% {
max-height: 0;
font-size: 0px;
overflow: clip;
padding-bottom: 0px;
}
}
.leftexpertisebody {
animation: expertisecontenthide;
animation-timeline: view();
animation-range-start: 60vh;
animation-range-end: 90vh;
animation-fill-mode: forwards;

animation-duration: 2s;
}
@media screen and (max-width: 1000px) {
.rightexpertise {
display: none;
Expand Down

0 comments on commit d68ad88

Please sign in to comment.