Skip to content

Commit

Permalink
Merge pull request #272 from Anandsg/revert-271-revert-269-master
Browse files Browse the repository at this point in the history
Revert "Revert "Enhanced the interactivity""
  • Loading branch information
Anandsg authored Oct 23, 2023
2 parents 7794740 + 75f2f82 commit 0881afe
Show file tree
Hide file tree
Showing 5 changed files with 27,772 additions and 19,484 deletions.
68 changes: 67 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,69 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;


.para{
border-bottom: 1px solid gray;

}
.para:nth-child(1) {
color: black;
font-weight: 400;
font-size: 16px;
animation: scaleAndFade .5s ease-in-out .2s forwards;
opacity: 0;
}

.para:nth-child(2) {
color: black;
font-weight: 400;
font-size: 16px;
animation: scaleAndFade .5s ease-in-out forwards;
animation-delay: .5s;
opacity: 0;
}

.para:nth-child(3) {
color: black;
font-weight: 400;
font-size: 16px;
animation: scaleAndFade .5s ease-in-out forwards;
animation-delay: .8s;
opacity: 0;
}
.para:nth-child(4) {
color: black;
font-weight: 400;
font-size: 16px;
animation: scaleAndFade .5s ease-in-out forwards;
animation-delay: 1s;
opacity: 0;
}
.para:nth-child(5) {
color: black;
font-weight: 400;
font-size: 16px;
animation: scaleAndFade .5s ease-in-out forwards;
animation-delay: 1.2s;
opacity: 0;
}


.confirmTitle{
text-align: center;
font-weight: 600;
font-size: 25px;

}

@keyframes scaleAndFade {
from {
transform: scale(1);

}
to {
transform: scale(1.2);
opacity: 1;
}
}
Loading

0 comments on commit 0881afe

Please sign in to comment.