-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from Anandsg/revert-271-revert-269-master
Revert "Revert "Enhanced the interactivity""
- Loading branch information
Showing
5 changed files
with
27,772 additions
and
19,484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
Oops, something went wrong.