We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae0ff50 commit f47dfd1Copy full SHA for f47dfd1
1 file changed
style.css
@@ -172,7 +172,7 @@ body::after {
172
.header-cta {
173
text-align: center;
174
margin-top: 2rem;
175
- animation: slideUp 1s ease-out 0.8s both;
+ animation: bounceDown 1.2s ease-out 1s both;
176
}
177
178
.install-btn {
@@ -1694,6 +1694,25 @@ body::after {
1694
1695
1696
1697
+@keyframes bounceDown {
1698
+ 0% {
1699
+ transform: translateY(30px);
1700
+ opacity: 0;
1701
+ }
1702
+ 70% {
1703
+ transform: translateY(-8px);
1704
+ opacity: 1;
1705
1706
+ 85% {
1707
+ transform: translateY(3px);
1708
1709
1710
+ 100% {
1711
+ transform: translateY(0);
1712
1713
1714
+}
1715
+
1716
1717
/* Decoration Animations */
1718
@keyframes float {
0 commit comments