Skip to content

Commit

Permalink
Merge pull request #869 from Subhajit-2023-44/LogoAnimation
Browse files Browse the repository at this point in the history
Fixed website logo animation issue ! #844
  • Loading branch information
mansiruhil authored Oct 17, 2024
2 parents 581786b + a09c8b4 commit 2252426
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 16 deletions.
14 changes: 8 additions & 6 deletions Feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -350,14 +350,16 @@
margin-right: 10px;
/* Space between the text and the logo image */
}

.letter {
display: inline-block;
font-size: 2rem;
animation: letterDrop 0.5s ease forwards;
animation-delay: calc(var(--letter-index) * 0.1s);
}

display: inline-block;
font-size: 2rem;
animation: letterDrop 0.5s ease forwards;
animation-delay: calc(var(--letter-index) * 0.1s);

}

.red {
color: red;
}
Expand Down
10 changes: 6 additions & 4 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -361,10 +361,12 @@
}

.letter {
display: inline-block;
font-size: 2rem;
animation: letterDrop 0.5s ease forwards;
animation-delay: calc(var(--letter-index) * 0.1s);

display: inline-block;
font-size: 2rem;
animation: letterDrop 0.5s ease forwards;
animation-delay: calc(var(--letter-index) * 0.1s);

}

.red {
Expand Down
8 changes: 8 additions & 0 deletions features.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,17 @@
}

.letter {

display: inline-block;
font-size: 2rem;
animation: letterDrop 0.5s ease forwards;
animation-delay: calc(var(--letter-index)* 0.1s);

}

.letter {
display: inline-block;
font-size: 2rem;
}

.red {
Expand Down
14 changes: 8 additions & 6 deletions team.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,14 +374,16 @@
margin-right: 10px;
/* Space between the text and the logo image */
}

.letter {
display: inline-block;
font-size: 2rem;
animation: letterDrop 0.5s ease forwards;
animation-delay: calc(var(--letter-index) * 0.1s);
}

display: inline-block;
font-size: 2rem;
animation: letterDrop 0.5s ease forwards;
animation-delay: calc(var(--letter-index) * 0.1s);

}

.red {
color: red;
}
Expand Down

0 comments on commit 2252426

Please sign in to comment.